1
Fork 0
tildes-reextended/source/manifest.json

53 lines
1.1 KiB
JSON
Raw Normal View History

2019-11-10 17:38:47 +00:00
{
"$schema": "http://json.schemastore.org/webextension",
"manifest_version": 2,
"name": "Tildes ReExtended",
"description": "An updated and reimagined recreation of Tildes Extended to enhance and improve the experience of Tildes.net.",
2022-04-06 20:27:08 +00:00
"version": "1.1.2",
2019-11-10 17:38:47 +00:00
"permissions": [
"downloads",
2019-11-10 17:38:47 +00:00
"storage",
"*://tildes.net/*"
],
"content_security_policy": "script-src 'self'; object-src 'self'; style-src 'unsafe-inline'",
"web_accessible_resources": [
"assets/**"
2019-11-10 17:38:47 +00:00
],
"icons": {
"128": "assets/tildes-reextended-128.png"
2019-11-10 17:38:47 +00:00
},
"background": {
"scripts": [
"background/background.ts"
2019-11-10 17:38:47 +00:00
]
},
"browser_action": {
"default_icon": {
"128": "assets/tildes-reextended-128.png"
2019-11-10 17:38:47 +00:00
}
},
"options_ui": {
"page": "options/index.html",
2019-11-10 17:38:47 +00:00
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"*://tildes.net/*"
],
"run_at": "document_end",
"css": [
"scss/scripts.scss"
2019-11-10 17:38:47 +00:00
],
"js": [
"content-scripts.ts"
2019-11-10 17:38:47 +00:00
]
}
],
"applications": {
"gecko": {
"id": "{3a6a9b87-5ea1-441c-98d8-e27a1a0958c8}"
}
}
2019-11-10 17:38:47 +00:00
}