Golinks 2
Your private URL shortener.
Qu'est-ce que Golinks 2 ?
Golinks 2 est une extension Chrome développée par Xuming Zeng, et sa fonction principale est "Your private URL shortener.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Golinks 2
Téléchargez les fichiers d'extension Golinks 2 au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Golinks 2 |
ID | ifddlpbonpoebonmmmpellcgigmjbknj |
URL Officiel | https://chromewebstore.google.com/detail/golinks-2/ifddlpbonpoebonmmmpellcgigmjbknj |
Description | Your private URL shortener. |
Taille du Fichier | 66.46 KB |
Nombre d'Installations | 124 |
Version Actuelle | 2.1.4 |
Dernière Mise à Jour | 2024-01-05 |
Date de Publication | 2018-09-01 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Xuming Zeng |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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'" } } |