URL Localizer
This extension allows the user to change the domain or url parameters easily before loading page.
URL Localizer란 무엇입니까?
URL Localizer은(는) Zeshi Zheng에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows the user to change the domain or url parameters easily before loading page."입니다.
확장 프로그램 스크린샷
URL Localizer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a Free Chrome Extension that helps engineers to capture and modify url. features: Control if you want to Pause Website Loading before you changing parameters Capture protocol//hostname:port/filepath?queries Edit parameters/domain to whatever you want Add new parameters Delete a parameter Case-ignored Search Copy all parameters easily
확장 프로그램 기본 정보
이름 | URL Localizer |
ID | caedmimeiecplmfpiaoboinalimdniea |
공식 URL | https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea |
설명 | This extension allows the user to change the domain or url parameters easily before loading page. |
파일 크기 | 100 KB |
설치 횟수 | 17 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2017-12-22 |
출시 날짜 | 2017-12-21 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | Zeshi Zheng |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "URL Localizer", "description": "This extension allows the user to change the domain or url parameters easily before loading page.", "version": "1.1.0", "icons": [], "browser_action": { "default_icon": "imgs\/icon.png", "default_popup": "dist\/index.html", "default_title": "Start Capturing" }, "author": "Zeshi (Steve) Zheng", "permissions": [ "http:\/\/*\/", "http:\/\/*\/*", "https:\/\/*\/", "https:\/\/*\/*" ], "background": { "scripts": [ "background1020.js" ] }, "content_scripts": [ { "run_at": "document_start", "matches": [ "http:\/\/*\/", "http:\/\/*\/*", "https:\/\/*\/", "https:\/\/*\/*" ], "js": [ "url-handler1020.js" ] } ] } |