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.",
|
2019-11-12 21:37:09 +00:00
|
|
|
"version": "0.2.0",
|
2019-11-10 17:38:47 +00:00
|
|
|
"permissions": [
|
2019-11-11 14:40:30 +00:00
|
|
|
"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": [
|
|
|
|
"./**"
|
|
|
|
],
|
|
|
|
"icons": {
|
|
|
|
"128": "./tildes-reextended-128.png"
|
|
|
|
},
|
|
|
|
"background": {
|
|
|
|
"scripts": [
|
|
|
|
"../ts/background.ts"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"browser_action": {
|
|
|
|
"default_icon": {
|
|
|
|
"128": "./tildes-reextended-128.png"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"options_ui": {
|
|
|
|
"page": "../html/options.html",
|
|
|
|
"open_in_tab": true
|
|
|
|
},
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": [
|
|
|
|
"*://tildes.net/*"
|
|
|
|
],
|
|
|
|
"run_at": "document_end",
|
|
|
|
"css": [
|
|
|
|
"../scss/scripts/jump-to-new-comment.scss",
|
|
|
|
"../scss/scripts/back-to-top.scss",
|
2019-11-12 14:01:31 +00:00
|
|
|
"../scss/scripts/user-labels.scss",
|
|
|
|
"../scss/scripts/markdown-toolbar.scss"
|
2019-11-10 17:38:47 +00:00
|
|
|
],
|
|
|
|
"js": [
|
|
|
|
"../ts/scripts/jump-to-new-comment.ts",
|
|
|
|
"../ts/scripts/back-to-top.ts",
|
2019-11-12 14:01:31 +00:00
|
|
|
"../ts/scripts/user-labels.ts",
|
2019-11-12 21:18:48 +00:00
|
|
|
"../ts/scripts/markdown-toolbar.ts",
|
|
|
|
"../ts/scripts/hide-votes.ts"
|
2019-11-10 17:38:47 +00:00
|
|
|
]
|
|
|
|
}
|
2019-11-10 18:26:04 +00:00
|
|
|
],
|
|
|
|
"applications": {
|
|
|
|
"gecko": {
|
|
|
|
"id": "{3a6a9b87-5ea1-441c-98d8-e27a1a0958c8}"
|
|
|
|
}
|
|
|
|
}
|
2019-11-10 17:38:47 +00:00
|
|
|
}
|