glink
Create aliases for URLs
glink란 무엇입니까?
glink은(는) J Luo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create aliases for URLs"입니다.
확장 프로그램 스크린샷
glink 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Type alias in address bar and hit Enter, then you will be redirected to the corresponding URL. Use popup to quickly create rules (alias -> URL). Open the "Options" page to add, delete, and view all existing rules. Example: 1. type 'c/' to go to Google Calendar 2. type 'y/' to go to Youtube 3. type 'xxx/yyy' to go to certain page You can customize all these rules. Recommendation: 1. Use one-character aliases for the most frequent pages. Like c/ for Google Calendar 2. Use aliases start with go/ for less frequent pages. Like go/doc-xxx for Google docs All data are stored in Chrome and won't be shared. Feedback is welcome. Please go to https://github.com/luoos/glink for feedback.
확장 프로그램 기본 정보
이름 | glink |
ID | djamlokjblgcpopojpandilmhmlednie |
공식 URL | https://chromewebstore.google.com/detail/glink/djamlokjblgcpopojpandilmhmlednie |
설명 | Create aliases for URLs |
파일 크기 | 146 KB |
설치 횟수 | 3,241 |
현재 버전 | 0.9 |
최근 업데이트 | 2020-09-07 |
출시 날짜 | 2020-08-24 |
평점 | 2.33/5 총 3 개의 평점 |
개발자 | J Luo |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/luoos/glink |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "glink", "version": "0.9", "description": "Create aliases for URLs", "permissions": [ "activeTab", "storage", "webRequest", "webRequestBlocking", "http:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "add rule", "default_popup": "popup.html", "default_icon": { "16": "images\/glink_icon16.png", "24": "images\/glink_icon24.png", "32": "images\/glink_icon32.png", "48": "images\/glink_icon48.png", "128": "images\/glink_icon128.png" } }, "options_page": "options.html", "icons": { "16": "images\/glink_icon16.png", "24": "images\/glink_icon24.png", "32": "images\/glink_icon32.png", "48": "images\/glink_icon48.png", "128": "images\/glink_icon128.png" }, "manifest_version": 2 } |