Url Editor PRO
Url parser which makes editing complex URLs as easy as possible. Features: params decoding, auto-suggest, keyboard navigation..
Url Editor PRO란 무엇입니까?
Url Editor PRO은(는) Max Chodorowski에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Url parser which makes editing complex URLs as easy as possible. Features: params decoding, auto-suggest, keyboard navigation.."입니다.
확장 프로그램 스크린샷
Url Editor PRO 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features: * parse url and show its chunks in easy to navigate fields * automatic or manual redirections * auto-refresh * manual and automatic url-encoding/decoding parameters * Base64 params encoding/decoding * auto-suggest functionality * suggestions manager (on options page) * sorting params (easy to find the one you're looking for) * keyboard shortcuts for all major actions * open submitted url in current/new tab or new window * open-source (feel free to contribute)
확장 프로그램 기본 정보
이름 | Url Editor PRO |
ID | maoigfcibanjdgnepaiiadjhgmejclea |
공식 URL | https://chromewebstore.google.com/detail/url-editor-pro/maoigfcibanjdgnepaiiadjhgmejclea |
설명 | Url parser which makes editing complex URLs as easy as possible. Features: params decoding, auto-suggest, keyboard navigation.. |
파일 크기 | 98.22 KB |
설치 횟수 | 4,539 |
현재 버전 | 0.9.4.2 |
최근 업데이트 | 2020-04-16 |
출시 날짜 | 2020-04-14 |
평점 | 4.56/5 총 9 개의 평점 |
개발자 | Max Chodorowski |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Url Editor PRO", "description": "Url parser which makes editing complex URLs as easy as possible. Features: params decoding, auto-suggest, keyboard navigation..", "version": "0.9.4.2", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "windows", "webRequest", "webRequestBlocking", "contextMenus" ], "icons": { "16": "img\/edit_16.png", "48": "img\/edit_32.png", "128": "img\/edit.png" }, "browser_action": { "default_icon": "img\/edit_32.png", "default_popup": "popup.html" }, "options_page": "options.html", "background": { "scripts": [ "app.js", "background.js" ] }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+U" } }, "GoToHomepage": { "suggested_key": { "default": "Ctrl+Shift+H", "mac": "Command+Shift+H" }, "description": "Go to homepage (root path)" }, "RedirectUseFirstRule": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Redirect using first rule" } }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |