2018-04-25 10:43:21 -04:00
|
|
|
{
|
|
|
|
"name": "Old Reddit Redirect",
|
|
|
|
"description": "Ensure Reddit always loads the old design",
|
2021-11-07 04:07:53 -05:00
|
|
|
"version": "1.6.0",
|
2018-04-25 10:43:21 -04:00
|
|
|
"manifest_version": 2,
|
2021-01-23 08:40:00 -05:00
|
|
|
"background": { "scripts": ["background.js"] },
|
2018-04-25 10:43:21 -04:00
|
|
|
"icons": {
|
|
|
|
"48": "img/icon48.png",
|
|
|
|
"128": "img/icon128.png"
|
|
|
|
},
|
2021-07-12 04:27:27 -04:00
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": ["*://old.reddit.com/*"],
|
|
|
|
"css": ["styles.css"],
|
|
|
|
"run_at": "document_start"
|
|
|
|
}
|
|
|
|
],
|
2018-04-25 10:43:21 -04:00
|
|
|
"permissions": [
|
|
|
|
"webRequest",
|
|
|
|
"webRequestBlocking",
|
|
|
|
"*://reddit.com/*",
|
2018-05-03 09:14:04 -04:00
|
|
|
"*://www.reddit.com/*",
|
|
|
|
"*://np.reddit.com/*",
|
2021-01-24 06:07:25 -05:00
|
|
|
"*://amp.reddit.com/*",
|
|
|
|
"*://i.reddit.com/*"
|
2018-04-25 10:43:21 -04:00
|
|
|
]
|
|
|
|
}
|