Skater
Spotlight-like extension for Chrome bookmarks
Cos'è Skater?
Skater è un'estensione di Chrome sviluppata da ecalzo.developer, e la sua funzione principale è "Spotlight-like extension for Chrome bookmarks".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Skater
Scarica i file di estensione Skater in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | goeeolknplhjegbfefjgeekeobpehekf |
| URL Ufficiale | https://chromewebstore.google.com/detail/skater/goeeolknplhjegbfefjgeekeobpehekf |
| Descrizione | Spotlight-like extension for Chrome bookmarks |
| Dimensione del File | 157 KB |
| Conteggio Installazioni | 20 |
| Versione Corrente | 1.1.8 |
| Ultimo Aggiornamento | 2020-12-22 |
| Data di Pubblicazione | 2020-08-15 |
| Valutazione | 5.00/5 Totale 4 Valutazioni |
| Sviluppatore | ecalzo.developer |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Ecalzo/Skater/releases/ |
| URL della Pagina di Aiuto | https://github.com/Ecalzo/Skater/issues/ |
| Lingue Supportate | 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"
}
}
} | |