Midora/extension/manifest.json

87 lines
2.4 KiB
JSON
Raw Normal View History

2018-09-16 12:29:59 +02:00
{
"manifest_version": 2,
"name": "Shinigami Eyes",
"author": "Shinigami Eyes",
2021-08-02 12:37:10 +02:00
"version": "1.0.29",
2018-12-07 19:58:01 +01:00
"homepage_url": "https://shinigami-eyes.github.io/",
2018-09-16 12:29:59 +02:00
"description": "Highlights transphobic/anti-LGBT and trans-friendly subreddits/users/facebook pages/groups with different colors.",
"icons": {
2020-09-14 11:49:54 +02:00
"48": "icons/icon-48.png",
"128": "icons/icon-128-96.png"
2018-09-16 12:29:59 +02:00
},
"content_scripts": [
{
2018-11-16 21:51:31 +01:00
"all_frames": true,
2018-09-16 12:29:59 +02:00
"matches": [
"*://*.facebook.com/*",
"*://*.youtube.com/*",
"*://*.reddit.com/*",
2018-11-16 21:51:31 +01:00
"*://*.twitter.com/*",
2020-12-26 08:14:42 +01:00
"*://*.medium.com/*",
2018-12-16 11:32:37 +01:00
"*://disqus.com/*",
"*://*.tumblr.com/*",
2019-01-14 18:54:47 +01:00
"*://*.wikipedia.org/*",
"*://*.rationalwiki.org/*",
2019-02-25 23:04:19 +01:00
"*://shinigami-eyes.localhost/*",
2018-12-16 11:33:04 +01:00
2019-03-01 00:04:29 +01:00
"*://duckduckgo.com/*",
"*://*.bing.com/*",
2019-10-06 13:04:11 +02:00
2018-12-16 11:33:04 +01:00
"*://*.google.ar/*",
"*://*.google.at/*",
"*://*.google.be/*",
"*://*.google.ca/*",
"*://*.google.ch/*",
"*://*.google.co.uk/*",
"*://*.google.com/*",
"*://*.google.de/*",
"*://*.google.dk/*",
"*://*.google.es/*",
"*://*.google.fi/*",
"*://*.google.fr/*",
"*://*.google.is/*",
"*://*.google.it/*",
"*://*.google.no/*",
"*://*.google.pt/*",
"*://*.google.se/*"
2018-09-16 12:29:59 +02:00
],
"css": [
"content.css"
]
2019-10-06 13:04:11 +02:00
},
{
"all_frames": true,
"matches": [
"*://*/*"
],
"js": [
"content.js"
]
2018-09-16 12:29:59 +02:00
}
],
"web_accessible_resources": [
"data/transphobic.dat",
"data/t-friendly.dat"
],
"background": {
"scripts": [
2018-12-03 22:20:11 +01:00
"bloomfilter.js",
"background.js"
2018-09-16 12:29:59 +02:00
]
},
"options_ui": {
2019-07-17 23:35:00 +02:00
"page": "options.html",
2018-09-16 12:29:59 +02:00
"open_in_tab": true
},
"permissions": [
"contextMenus",
2018-10-27 17:02:15 +02:00
"storage",
"*://*/*"
2018-09-16 12:29:59 +02:00
],
"applications": {
"gecko": {
"id": "shinigamieyes@shinigamieyes",
"strict_min_version": "60.0"
}
}
}