URL shortcuts
Gives shortcut and autosuggestions for urls. Convenient for developers who often use simmilar URLs (different pages - same domain)
URL shortcuts란 무엇입니까?
URL shortcuts은(는) 1978milan.babic에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gives shortcut and autosuggestions for urls. Convenient for developers who often use simmilar URLs (different pages - same domain)"입니다.
확장 프로그램 스크린샷
URL shortcuts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Very convenient for web developers. From a list (lists) that user edits - search on autosuggest creates link that is going to be modified. You are practicaly creating new URL from parts already entered as suggestions. - First you create your working project base URL (you can use http shortcuts already present to speed up this step). - Once you have created it, browser will automaticaly open new tab with your projects base URL. - Second time you open extension, you'll see that projects base URL has been set, and you can now easily open some pages with that project base. - If you choose to enter something else that is not on "extensions url" list, you'll see that this extension will remember your part of URL and save it to you suggestions for some other browsings. - If you want to change your projects base URL - just hit escape button when focused on input This extension should speed up your development proccess. For the fastest performance please create shortcut on plugins page in your browser - like on the intro image.
확장 프로그램 기본 정보
이름 | URL shortcuts |
ID | fcgkfcbneccampcdkeokbihfajficegm |
공식 URL | https://chromewebstore.google.com/detail/url-shortcuts/fcgkfcbneccampcdkeokbihfajficegm |
설명 | Gives shortcut and autosuggestions for urls. Convenient for developers who often use simmilar URLs (different pages - same domain) |
파일 크기 | 62.03 KB |
설치 횟수 | 119 |
현재 버전 | 3.0 |
최근 업데이트 | 2018-03-24 |
출시 날짜 | 2018-03-24 |
평점 | 3.00/5 총 4 개의 평점 |
개발자 | 1978milan.babic |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "URL shortcuts", "short_name": "URL short", "description": "Gives shortcut and autosuggestions for urls. Convenient for developers who often use simmilar URLs (different pages - same domain)", "version": "3.0", "browser_action": { "default_icon": { "16": ".\/icons\/icon16.png", "48": ".\/icons\/icon48.png", "64": ".\/icons\/icon64.png", "128": ".\/icons\/icon128.png" }, "default_title": "URL shortcuts" }, "icons": { "16": ".\/icons\/icon16.png", "48": ".\/icons\/icon48.png", "64": ".\/icons\/icon64.png", "128": ".\/icons\/icon128.png" }, "permissions": [ "tabs", "storage", "https:\/\/*\/*", "http:\/\/*\/*" ], "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+Y", "mac": "Command+Shift+Y", "chromeos": "Ctrl+Shift+U", "linux": "Ctrl+Shift+J" } } }, "background": { "scripts": [ ".\/background\/background.js" ] } } |