You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.5 KiB
99 lines
2.5 KiB
{ |
|
"manifest_version": 2, |
|
"name": "Jonathans Overrides", |
|
"version": "1.0", |
|
"description": "Adds my style and script overides to sites", |
|
"applications": { |
|
"gecko": { |
|
"id": "overides@jonathanh.co.uk" |
|
} |
|
}, |
|
"content_scripts": [ |
|
{ |
|
"matches": ["*://*.archlinux.org/*"], |
|
"css": [ "css/archwiki.css" ], |
|
"run_at": "document_start" |
|
}, |
|
{ |
|
"matches": ["*://*.amazon.com/*","*://*.amazon.co.uk/*"], |
|
"css": [ "css/amazon.css" ], |
|
"run_at": "document_start" |
|
}, |
|
{ |
|
"matches": ["*://*.bbc.com/*","*://*.bbc.co.uk/*"], |
|
"css": [ "css/bbc.css" ], |
|
"run_at": "document_start" |
|
}, |
|
{ |
|
"matches": ["*://*.duckduckgo.com/*","*://*.duckduckgo.co.uk/*"], |
|
"css": [ "css/duckduckgo.css" ], |
|
"run_at": "document_start" |
|
}, |
|
{ |
|
"matches": ["*://*.reddit.com/*"], |
|
"css": [ "css/reddit.css" ], |
|
"run_at": "document_start" |
|
}, |
|
{ |
|
"matches": ["*://*.wikipedia.org/*"], |
|
"css": [ "css/wikipedia.css" ], |
|
"run_at": "document_start" |
|
}, |
|
{ |
|
"matches": ["*://stackoverflow.com/*","*://*.stackoverflow.com/*"], |
|
"css": [ "css/stackoverflow.css" ], |
|
"run_at": "document_start" |
|
}, |
|
{ |
|
"matches": ["*://youtube.com/*","*://*.youtube.com/*"], |
|
"css": [ "css/youtube.css" ], |
|
"run_at": "document_start" |
|
}, |
|
{ |
|
"matches": ["*://wiki.local.irmplc.com/*"], |
|
"css": [ "css/wiki.css" ], |
|
"run_at": "document_start" |
|
}, |
|
{ |
|
"matches": ["*://protonmail.com/*","*://*.protonmail.com/*"], |
|
"css": [ "css/protonmail.css" ], |
|
"run_at": "document_start" |
|
}, |
|
{ |
|
"matches": ["*://github.com/*","*://*.github.com/*"], |
|
"css": [ "css/github.css" ], |
|
"run_at": "document_start" |
|
}, |
|
{ |
|
"matches": ["*://gitlab.irmtechies.net/*"], |
|
"css": [ "css/gitlab.css" ], |
|
"run_at": "document_start" |
|
}, |
|
|
|
{ |
|
"matches": ["*://*/*"], |
|
"exclude_matches": ["*://*.archlinux.org/*", |
|
"*://*.amazon.com/*","*://*.amazon.co.uk/*", |
|
"*://*.bbc.com/*","*://*.bbc.co.uk/*", |
|
"*://*.duckduckgo.com/*","*://*.duckduckgo.co.uk/*", |
|
"*://*.reddit.com/*", |
|
"*://*.wikipedia.org/*", |
|
"*://stackoverflow.com/*","*://*.stackoverflow.com/*", |
|
"*://youtube.com/*","*://*.youtube.com/*", |
|
"*://wiki.local.irmplc.com/*", |
|
"*://protonmail.com/*","*://*.protonmail.com/*", |
|
"*://github.com/*","*://*.github.com/*", |
|
"*://gitlab.irmtechies.net/*", |
|
"*://lbry.tv/*", "*://*.lbry.tv/*", |
|
"*://invidio.us/*", "*://*.invidio.us/*" |
|
], |
|
"css": [ "css/global.css" ], |
|
"run_at": "document_start" |
|
}, |
|
{ |
|
"matches": ["*://*/*"], |
|
"js": [ "js/codemirror.js" ], |
|
"run_at": "document_start" |
|
} |
|
] |
|
}
|
|
|