Inspect and view changes in User agent override 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,
"version": "1.0",
"name": "User agent override",
"description": "Gives the ability to set custom user agent string",
"author": "Nikola Glavina",
"browser_specific_settings": {
"gecko": {
"id": "useragentoverride@glavina.nikola"
}
},
"background": {
"scripts": [
"intercept.js"
]
},
"permissions": [
"webRequest",
"<all_urls>",
"webRequestBlocking",
"storage"
],
"options_ui": {
"page": "options.html",
"browser_style": true
}
}