Pail/background.js

17 lines
445 B
JavaScript
Raw Normal View History

2018-04-25 10:43:21 -04:00
const oldReddit = "http://old.reddit.com"
chrome.webRequest.onBeforeRequest.addListener(
function(details) {
return {redirectUrl: oldReddit + details.url.match(/^https?:\/\/[^\/]+([\S\s]*)/)[1]}
},
{
urls: [
"*://reddit.com/*",
"*://www.reddit.com/*",
"*://np.reddit.com/*"
],
types: ["main_frame", "sub_frame", "stylesheet", "script", "image", "object", "xmlhttprequest", "other"]
},
["blocking"]
)