Advanced User Agent Switcher

Helps users to change browser user agent string across all websites

What is Advanced User Agent Switcher?

Advanced User Agent Switcher is a Chrome extension developed by https://kodemuse.dev, and its main feature is "Helps users to change browser user agent string across all websites".

Extension Screenshots

screenshot
screenshot
screenshot

Download Advanced User Agent Switcher Extension CRX File

Download Advanced User Agent Switcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension provides you with two options to change user agent string:
- Use custom user agent string
- Use pre-defined user agent string

For in-depth documentation on how to use the extension, please visit:
https://www.kodemuse.dev/advanced-user-agent-switcher/

Privacy notice: This software neither collects nor transmits any personally identifiable information. This software does not track your browsing behaviour. Information necessary for functioning of this software is stored on the devices of the end user, our servers do not have access to this information.

For more information please read our privacy policy and terms of service.

Terms:
https://www.kodemuse.dev/tos/

Privacy:
https://www.kodemuse.dev/privacy/                    

Extension Basic Information

Name Advanced User Agent Switcher Advanced User Agent Switcher
ID oocjkgckahlciblbfkgacgockpgihnec
Official URL https://chromewebstore.google.com/detail/advanced-user-agent-switc/oocjkgckahlciblbfkgacgockpgihnec
Description Helps users to change browser user agent string across all websites
File Size 984 KB
Installation Count 2,923
Current Version 1.0.0.2
Last Updated 2021-07-02
Publish Date 2021-02-17
Rating 5.00/5 Total 2 Ratings
Developer https://kodemuse.dev
Email [email protected]
Payment Type free
Extension Website https://www.kodemuse.dev/advanced-user-agent-switcher/
Help Page URL https://www.kodemuse.dev/advanced-user-agent-switcher/
Privacy Policy Page URL https://www.kodemuse.dev/privacy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Advanced User Agent Switcher",
    "version": "1.0.0.2",
    "short_name": "AUAS",
    "description": "Helps users to change browser user agent string across all websites",
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "icons": {
        "16": "\/image\/icon\/free\/16.png",
        "24": "\/image\/icon\/free\/24.png",
        "32": "\/image\/icon\/free\/32.png",
        "48": "\/image\/icon\/free\/48.png",
        "64": "\/image\/icon\/free\/64.png",
        "128": "\/image\/icon\/free\/128.png",
        "256": "\/image\/icon\/free\/256.png",
        "512": "\/image\/icon\/free\/512.png"
    },
    "browser_action": {
        "default_title": "AUAS",
        "default_icon": "\/image\/icon\/free\/128.png",
        "default_popup": "\/ng\/popup\/comp\/popup\/popup.html"
    },
    "background": {
        "page": "\/background\/background.html"
    },
    "web_accessible_resources": [
        "\/ng\/content\/**\/*.html",
        "\/css_content\/**\/*.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "\/js_content\/user_agent.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "manifest_version": 2,
    "homepage_url": "https:\/\/www.kodemuse.dev\/advanced-user-agent-switcher\/"
}