User-Agent Switcher
User-Agent Switcher is a quick and easy way to switch between user-agents.
User-Agent Switcher란 무엇입니까?
User-Agent Switcher은(는) NefkingSoft에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "User-Agent Switcher is a quick and easy way to switch between user-agents."입니다.
확장 프로그램 스크린샷
User-Agent Switcher 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Just right click on any page and select your user-agent. This Chrome extension adds a toolbar button and a menu to switch between user-agents. Browse with our predefined user-agents or add your own user-agents. Changing User-Agent allows you to mimic, spoof or fake other browsers, devices or search engine spiders. The extension does not render web pages in the same way as the selected one. User-Agent Switcher is primarily for developers who want to test how a page responds to different browsers. User-Agent switcher may also be used to reach certain pages that allows a particular browser. You can change User-Agent back to default when you are done. This extension also changes the javascript based "navigator userAgent" Add your own User-Agents if you don´t find anything that suits your needs.
확장 프로그램 기본 정보
이름 | |
ID | aedikcfpfonanffanecfolneiaoakmlc |
공식 URL | https://chrome.google.com/webstore/detail/user-agent-switcher/aedikcfpfonanffanecfolneiaoakmlc |
설명 | User-Agent Switcher is a quick and easy way to switch between user-agents. |
파일 크기 | 129 KB |
설치 횟수 | 35,346 |
현재 버전 | 2.5.0 |
최근 업데이트 | 2021-01-06 |
출시 날짜 | 2020-06-28 |
평점 | 4.23/5 총 13 개의 평점 |
개발자 | NefkingSoft |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "page": "background.html" }, "options_page": "options.html", "name": "User-Agent Switcher", "short_name": "User-Agent Switcher", "description": "User-Agent Switcher is a quick and easy way to switch between user-agents.", "version": "2.5.0", "offline_enabled": true, "browser_action": { "default_icon": { "19": "img\/icon19.png", "38": "img\/icon38.png" }, "default_popup": "popup.html", "default_title": "User-Agent Switcher" }, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "permissions": [ "webRequest", "webRequestBlocking", "http:\/\/*\/", "https:\/\/*\/", "contextMenus" ], "content_scripts": [ { "js": [ "js\/content.min.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_start" } ] } |