Inspect and view changes in SubsNet UserAgent source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "SubsNet UserAgent",
"version": "1.1.0",
"description": "A list of UserAgent entries consisting of a default value and additional values for specific sites",
"permissions": [
"webRequest",
"webRequestBlocking",
"<all_urls>",
"storage"
],
"background": {
"scripts": [
"./js/background.js"
]
},
"icons": {
"16": "imgs/icons/icon16.png",
"32": "imgs/icons/icon32.png",
"48": "imgs/icons/icon48.png",
"64": "imgs/icons/icon64.png",
"256": "imgs/icons/icon256.png"
},
"content_scripts": [
{
"all_frames": true,
"run_at": "document_start",
"match_about_blank": true,
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_action": {
"default_popup": "popup.html"
},
"browser_specific_settings": {
"gecko": {
"id": "useragent_e@subsnet.app"
}
}
}