Improvements to WatchSeries
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "BetterFreeTV",
"version": "2.2",
"manifest_version": 2,
"description": "Improvements to WatchSeries",
"omnibox": {
"keyword": "watch"
},
"icons": {
"16": "images/icon38.png"
},
"background": {
"scripts": [
"backgroundScript.js"
]
},
"content_scripts": [
{
"matches": [
"*://*.watchseries.ag/*"
],
"js": [
"injectScript.js"
]
}
],
"page_action": {
"default_icon": {
"38": "images/icon38.png"
},
"default_title": "BetterFreeTV",
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"storage",
"webRequest",
"webRequestBlocking",
"<all_urls>"
]
}