URL Prefix
A tool for links where URL prefix is same and suffix changes. Ideal for Jira, GitHub, and ticketing links.
URL Prefix란 무엇입니까?
URL Prefix은(는) Piyush Ramuka에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool for links where URL prefix is same and suffix changes. Ideal for Jira, GitHub, and ticketing links."입니다.
확장 프로그램 스크린샷
URL Prefix 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Do you find yourself typing same URL (website) prefix with different suffixes/parameters. Something we experience while using Jira, Github, stock checking, or a ticketing system. What's New: Open extension with shortcut: - Windows: Ctrl + Shift + U - Mac: Cmd + Shift + U Sample: https://github.com//issues/123 https://source.yourcomany.com/jira-ticket-2321 https://helpdesk.yourproduct.com/ticket/2222 https://github.com/ /issues/1111 https://www.amazon.com/s?k= This free extension saves time by allowing you to build URL prefixes. Once the prefixes are configured, use the pop-up to type the query and directly jump to the desired page. You may also open multiple pages at once by supplying the query separated by comma. Efficient and easy way to open pages, tickets, issues, orders and more directly! One more thing - No data is collected from this app!
확장 프로그램 기본 정보
이름 | URL Prefix |
ID | phmkaaliodhmmhddaacjagcifjacnmbh |
공식 URL | https://chromewebstore.google.com/detail/url-prefix/phmkaaliodhmmhddaacjagcifjacnmbh |
설명 | A tool for links where URL prefix is same and suffix changes. Ideal for Jira, GitHub, and ticketing links. |
파일 크기 | 102 KB |
설치 횟수 | 332 |
현재 버전 | 1.8.3 |
최근 업데이트 | 2022-05-31 |
출시 날짜 | 2020-04-09 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | Piyush Ramuka |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.8.3", "author": "Piyush Ramuka", "manifest_version": 3, "name": "URL Prefix", "description": "A tool for links where URL prefix is same and suffix changes. Ideal for Jira, GitHub, and ticketing links.", "permissions": [ "storage" ], "omnibox": { "keyword": "go" }, "action": { "default_popup": "popup.html" }, "icons": { "16": "images\/urlprefix.png", "32": "images\/urlprefix32.png", "48": "images\/urlprefix48.png", "128": "images\/urlprefix128.png" }, "options_ui": { "page": "options.html" }, "background": { "service_worker": "background.js" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+U", "mac": "Command+Shift+U" } } } } |