mirror of
https://github.com/lawrencehook/remove-youtube-suggestions.git
synced 2026-07-25 06:54:31 +00:00
update
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
keys/
|
keys/
|
||||||
web-ext-artifacts/
|
web-ext-artifacts/
|
||||||
extension.zip
|
extension.zip
|
||||||
|
manifest.json
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
cd src
|
||||||
|
cp chrome_manifest.json manifest.json
|
||||||
|
cd ..
|
||||||
|
|
||||||
cp -r src chrome_extension
|
cp -r src chrome_extension
|
||||||
rm -rf chrome_extension/web-ext-artifacts/
|
rm -rf chrome_extension/web-ext-artifacts/
|
||||||
rm extension.zip
|
rm extension.zip
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
cd src
|
||||||
|
cp firefox_manifest.json manifest.json
|
||||||
|
web-ext build
|
||||||
|
cd ..
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
{
|
||||||
|
"name": "RYS — Remove YouTube Suggestions",
|
||||||
|
"description": "Spend less time on YouTube. Customize YouTube's user interface to be less engaging.",
|
||||||
|
"homepage_url": "https://github.com/lawrencehook/remove-youtube-suggestions",
|
||||||
|
"manifest_version": 3,
|
||||||
|
"version": "4.3.56",
|
||||||
|
|
||||||
|
"icons": {
|
||||||
|
"16": "/images/16.png",
|
||||||
|
"32": "/images/32.png",
|
||||||
|
"64": "/images/64.png",
|
||||||
|
"128": "/images/128.png"
|
||||||
|
},
|
||||||
|
|
||||||
|
"background": {
|
||||||
|
"scripts": [
|
||||||
|
"/background/events.js"
|
||||||
|
],
|
||||||
|
"persistent": false
|
||||||
|
},
|
||||||
|
|
||||||
|
"content_scripts": [
|
||||||
|
{
|
||||||
|
"js": [
|
||||||
|
"/shared/main.js",
|
||||||
|
"/shared/https.js",
|
||||||
|
"/shared/utils.js",
|
||||||
|
"/content-script/main.js"
|
||||||
|
],
|
||||||
|
"css": ["/content-script/main.css"],
|
||||||
|
"all_frames": true,
|
||||||
|
"matches": ["*://*.youtube.com/*"],
|
||||||
|
"run_at": "document_start"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
|
"action": {
|
||||||
|
"default_popup": "/options/main.html",
|
||||||
|
"default_title": "Remove Youtube Suggestions",
|
||||||
|
"default_icon": {
|
||||||
|
"16": "/images/16.png",
|
||||||
|
"32": "/images/32.png",
|
||||||
|
"64": "/images/64.png",
|
||||||
|
"128": "/images/128.png"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"options_ui": {
|
||||||
|
"page": "/options/main.html",
|
||||||
|
"open_in_tab": true
|
||||||
|
},
|
||||||
|
"permissions": [
|
||||||
|
"storage"
|
||||||
|
],
|
||||||
|
"host_permissions": [
|
||||||
|
"*://*.youtube.com/*"
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user