Golinks 2
Your private URL shortener.
Golinks 2란 무엇입니까?
Golinks 2은(는) Xuming Zeng에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Your private URL shortener."입니다.
확장 프로그램 스크린샷
Golinks 2 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Create keyword-based bookmarks using a launcher interface. It's like having your own personal URL shortener. Get to all your favorite sites in less than 2 seconds with only your keyboard—no more worrying about cluttering up your bookmarks bar! If you have used Quicksilver, Alfred, Launchy, Wox, or Gnome Do, you'll feel right at home with Golinks' launcher interface. Press Ctrl+Shift+Space (Cmd+Shift+Space on Macs) to get started making your own golinks! Additional features: • Search Chrome bookmarks and browsing history • Search and switch to open tabs Source code: https://github.com/xsznix/golinks2 Privacy: Golinks 2 does not collect any information about you. All of your bookmark data is stored in your Chrome bookmarks.
확장 프로그램 기본 정보
이름 | Golinks 2 |
ID | ifddlpbonpoebonmmmpellcgigmjbknj |
공식 URL | https://chromewebstore.google.com/detail/golinks-2/ifddlpbonpoebonmmmpellcgigmjbknj |
설명 | Your private URL shortener. |
파일 크기 | 66.46 KB |
설치 횟수 | 124 |
현재 버전 | 2.1.4 |
최근 업데이트 | 2024-01-05 |
출시 날짜 | 2018-09-01 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Xuming Zeng |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Golinks 2", "description": "Your private URL shortener.", "version": "2.1.4", "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png", "256": "img\/icon256.png" }, "permissions": [ "tabs", "bookmarks", "favicon", "history", "storage" ], "background": { "service_worker": "js\/main.js" }, "action": { "default_title": "Golinks", "default_popup": "popup.html" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+Space", "windows": "Ctrl+Shift+Space", "mac": "Command+Shift+Space", "linux": "Ctrl+Shift+Space", "chromeos": "Ctrl+Shift+Space" } } }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |