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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/"
}