libreredirect/manifest.json

62 行
1.4 KiB
JSON
Raw 通常表示 履歴

2019-09-20 19:45:58 +09:00
{
"name": "Privacy Redirect",
2020-02-24 12:19:56 +09:00
"description": "Redirects Twitter, YouTube, Instagram & Google Maps requests to privacy friendly alternatives.",
"version": "1.1.20",
2019-09-20 19:45:58 +09:00
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
2019-10-07 20:59:31 +09:00
],
"persistent": true
2019-09-20 19:45:58 +09:00
},
"icons": {
2019-09-29 22:04:24 +09:00
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
2019-09-20 19:45:58 +09:00
},
"permissions": [
2019-09-29 22:04:24 +09:00
"storage",
2019-09-20 19:45:58 +09:00
"webRequest",
"webRequestBlocking",
2020-01-14 18:48:37 +09:00
"<all_urls>"
2019-09-29 22:04:24 +09:00
],
"browser_action": {
2020-02-24 12:19:56 +09:00
"default_title": "Privacy Redirect",
2019-09-29 22:04:24 +09:00
"default_popup": "pages/popup/popup.html",
"default_icon": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"*://twitter.com/*",
"*://www.twitter.com/*",
"*://mobile.twitter.com/*",
"*://pbs.twimg.com/*",
"*://video.twimg.com/*"
],
"js": [
"content-script.js"
],
"run_at": "document_start"
}
],
2019-09-29 22:04:24 +09:00
"options_ui": {
"page": "pages/options/options.html",
"open_in_tab": false
2019-10-07 20:59:31 +09:00
},
"web_accessible_resources": [
"assets/iframe_api.js",
"assets/www-widgetapi.js"
],
2019-10-07 20:59:31 +09:00
"browser_specific_settings": {
"gecko": {
"id": "{b7f9d2cd-d772-4302-8c3f-eb941af36f76}"
}
2019-09-29 22:04:24 +09:00
}
2019-09-20 19:45:58 +09:00
}