Advanced User Agent Switcher

Helps users to change browser user agent string across all websites

Co je Advanced User Agent Switcher?

Advanced User Agent Switcher je rozšíření Chrome vyvinuté https://kodemuse.dev, a jeho hlavní funkcí je „Helps users to change browser user agent string across all websites“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Advanced User Agent Switcher

Stáhněte si soubory rozšíření Advanced User Agent Switcher ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Advanced User Agent Switcher Advanced User Agent Switcher
ID oocjkgckahlciblbfkgacgockpgihnec
Oficiální URL https://chromewebstore.google.com/detail/advanced-user-agent-switc/oocjkgckahlciblbfkgacgockpgihnec
Popis Helps users to change browser user agent string across all websites
Velikost souboru 984 KB
Počet instalací 2,923
Aktuální Verze 1.0.0.2
Poslední Aktualizace 2021-07-02
Datum Vydání 2021-02-17
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://kodemuse.dev
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.kodemuse.dev/advanced-user-agent-switcher/
URL Stránky Nápovědy https://www.kodemuse.dev/advanced-user-agent-switcher/
URL Stránky Zásad Ochrany Soukromí https://www.kodemuse.dev/privacy
Podporované Jazyky 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\/"
}