Advanced User Agent Switcher

Helps users to change browser user agent string across all websites

Advanced User Agent Switcherとは何ですか?

Advanced User Agent Switcherはhttps://kodemuse.devによって開発されたChromeの拡張機能で、その主な機能は「Helps users to change browser user agent string across all websites」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Advanced User Agent Switcher拡張機能のCRXファイルをダウンロード

Advanced User Agent Switcher拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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/                    

拡張機能の基本情報

名前 Advanced User Agent Switcher Advanced User Agent Switcher
ID oocjkgckahlciblbfkgacgockpgihnec
公式URL https://chromewebstore.google.com/detail/advanced-user-agent-switc/oocjkgckahlciblbfkgacgockpgihnec
説明 Helps users to change browser user agent string across all websites
ファイルサイズ 984 KB
インストール数 2,923
現在のバージョン 1.0.0.2
最終更新日 2021-07-02
公開日 2021-02-17
評価 5.00/5 合計 2 レビュー
開発者 https://kodemuse.dev
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.kodemuse.dev/advanced-user-agent-switcher/
ヘルプページのURL https://www.kodemuse.dev/advanced-user-agent-switcher/
プライバシーポリシーページのURL https://www.kodemuse.dev/privacy
対応言語 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\/"
}