Random User-Agent (Switcher)

Automatically change the user agent after specified period of time to a randomly selected one, thus hiding your real user agent

Random User-Agent (Switcher)란 무엇입니까?

Random User-Agent (Switcher)은(는) https://rua.is-an.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically change the user agent after specified period of time to a randomly selected one, thus hiding your real user agent"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Random User-Agent (Switcher) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        User-Agent - a string that is sent along to any website you visit. This is a sort of "fingerprint" your browser leaves behind which contains:

⭐️ The name and version of your browser
⭐️ The name of the operating system (Mac, Windows, Linux, etc.) and its version
⭐️ Information about some plugins installed on the browser
⭐️ Other information that identifies and exposes you

🚀 This extension has been created to stop data leakage and emulate different devices in the simplest way!

It automatically replaces User-Agent strings after a specified period of time with a randomized one. User-Agent strings can also be set manually. The extension is incredibly lightweight, using very few resources. User-Agent randomization can be customized by the user (what browsers and OS are spoofed, etc.). Exceptions list available with the option of wildcards. Protects against Javascript exploits to hide your identity and protect your anonymity.

Completely free and with no ads.

Made with ❤️ Source code: https://github.com/tarampampam/random-user-agent

💸 For commercial offers, please email me at [email protected]                    

확장 프로그램 기본 정보

이름 Random User-Agent (Switcher) Random User-Agent (Switcher)
ID einpaelgookohagofgnnkcfjbkkgepnp
공식 URL https://chromewebstore.google.com/detail/random-user-agent-switche/einpaelgookohagofgnnkcfjbkkgepnp
설명 Automatically change the user agent after specified period of time to a randomly selected one, thus hiding your real user agent
파일 크기 108 KB
설치 횟수 207,477
현재 버전 3.18.0
최근 업데이트 2023-07-21
출시 날짜 2020-05-04
평점 4.52/5 총 301 개의 평점
개발자 https://rua.is-an.app
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tarampampam/random-user-agent
도움말 페이지 URL https://github.com/tarampampam/random-user-agent/issues?q=is%3Aissue
지원되는 언어 id,de,en,fr,vi,tr,es,pl,pt-BR,ru,uk,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_manifest_name__",
    "version": "3.18.0",
    "author": "https:\/\/github.com\/tarampampam",
    "homepage_url": "https:\/\/github.com\/tarampampam\/random-user-agent",
    "default_locale": "en",
    "description": "__MSG_manifest_description__",
    "icons": {
        "16": "icons\/logo\/16.png",
        "48": "icons\/logo\/48.png",
        "128": "icons\/logo\/128.png"
    },
    "minimum_chrome_version": "49.0",
    "incognito": "spanning",
    "browser_action": {
        "default_icon": "icons\/logo\/48.png",
        "default_popup": "popup.html",
        "default_title": "__MSG_manifest_action_default_title__"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "commands": {
        "renew-useragent": {
            "description": "__MSG_manifest_command_renew_useragent__",
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            }
        }
    }
}