Advanced User Agent Switcher

Helps users to change browser user agent string across all websites

Advanced User Agent Switcherคืออะไร?

Advanced User Agent Switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kodemuse.dev และคุณลักษณะหลักของมันคือ "Helps users to change browser user agent string across all websites"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Advanced User Agent Switcher

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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\/"
}