PEE/chrome/manifest.json

68 lines
1.4 KiB
JSON
Raw Normal View History

2022-05-02 19:07:24 +00:00
{
"manifest_version": 3,
2022-05-02 19:07:24 +00:00
"name": "PngExtraEmbedder",
"description": "Discover embedded files on 4chan and archives!",
"version": "0.338",
2022-05-02 19:07:24 +00:00
"icons": {
"64": "1449696017588.png"
},
2022-07-24 17:22:39 +00:00
"permissions": [
2022-07-31 23:45:51 +00:00
"storage",
"activeTab",
"scripting",
2022-07-31 23:45:51 +00:00
"declarativeNetRequestWithHostAccess"
2022-07-24 17:22:39 +00:00
],
"background": {
"service_worker": "bg.js"
},
"host_permissions": [
"<all_urls>"
2022-05-02 19:07:24 +00:00
],
"web_accessible_resources": [
{
"resources": [
"*.html",
"*.js"
],
"matches": [
"<all_urls>"
]
}
],
2022-05-02 19:07:24 +00:00
"content_scripts": [
{
"matches": [
"https://*.coom.tech/*",
"https://*.4chan.org/*",
"https://*.4channel.org/*",
2022-06-26 19:03:31 +00:00
"https://*.4plebs.org/*",
2022-05-02 19:07:24 +00:00
"https://desuarchive.org/*",
"https://archived.moe/*",
"https://archive.nyafuu.org/*",
"https://arch.b4k.co/*",
"https://archive.wakarimasen.moe/*",
"https://b4k.co/*",
"https://fireden.net/*",
"https://thebarchive.com/*",
2022-12-22 03:17:28 +00:00
"https://archiveofsins.com/*",
2022-12-23 20:05:14 +00:00
"https://kohlchan.net/*",
"https://*.kohlchan.net/*"
2022-05-02 19:07:24 +00:00
],
"css": [],
"run_at": "document_start",
"js": [
"dist/main.js"
],
"world": "MAIN"
2022-05-02 19:07:24 +00:00
}
2022-07-31 23:45:51 +00:00
],
"declarative_net_request": {
"rule_resources": [
{
"id": "rule1",
"enabled": true,
"path": "b4k-csp.json"
}
]
}
}