Skater
Spotlight-like extension for Chrome bookmarks
Qu'est-ce que Skater ?
Skater est une extension Chrome développée par ecalzo.developer, et sa fonction principale est "Spotlight-like extension for Chrome bookmarks".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Skater
Téléchargez les fichiers d'extension Skater 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
Written to help developers who love keyboard-centric workflows, Skater emulates MacOS Spotlight, but for Chrome bookmarks. Instantly search your bookmarks with Ctrl + Shift + Space or Cmd + Shift + Space. --- Skater is open source and always under construction. Checkout the GitHub page for feature requests.
Informations de Base sur l'Extension
Nom | Skater |
ID | goeeolknplhjegbfefjgeekeobpehekf |
URL Officiel | https://chromewebstore.google.com/detail/skater/goeeolknplhjegbfefjgeekeobpehekf |
Description | Spotlight-like extension for Chrome bookmarks |
Taille du Fichier | 157 KB |
Nombre d'Installations | 20 |
Version Actuelle | 1.1.8 |
Dernière Mise à Jour | 2020-12-22 |
Date de Publication | 2020-08-15 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | ecalzo.developer |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Ecalzo/Skater/releases/ |
URL de la Page d'Aide | https://github.com/Ecalzo/Skater/issues/ |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Skater", "description": "Spotlight-like extension for Chrome bookmarks", "version": "1.1.8", "icons": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_popup": "static\/popup.html", "default_icon": "images\/icon128.png" }, "background": { "scripts": [ "static\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "static\/bundle.js" ] } ], "permissions": [ "bookmarks", "tabs" ], "commands": { "launch": { "suggested_key": { "default": "Ctrl+Shift+Space", "mac": "Command+Shift+Space" }, "description": "launch Skater" } } } |