Add to Shaarli
This extension lets you add the current tab or a note to your Shaarli instance.
Cos'è Add to Shaarli?
Add to Shaarli è un'estensione di Chrome sviluppata da Lucas Bürgy, e la sua funzione principale è "This extension lets you add the current tab or a note to your Shaarli instance.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Add to Shaarli
Scarica i file di estensione Add to Shaarli 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
You have to setup your Shaarli instance in the options first.
- On click : Add current tab
- Alt+S : Add current tab
- Alt+N : Add a note
This extension is open source and available here: https://github.com/burgyl/AddToShaarli Informazioni di Base sull'Estensione
| Nome | |
| ID | jhfblapoehcfajokolimghdfmeeakbee |
| URL Ufficiale | https://chromewebstore.google.com/detail/add-to-shaarli/jhfblapoehcfajokolimghdfmeeakbee |
| Descrizione | This extension lets you add the current tab or a note to your Shaarli instance. |
| Dimensione del File | 99.53 KB |
| Conteggio Installazioni | 1,473 |
| Versione Corrente | 1.1.0 |
| Ultimo Aggiornamento | 2021-03-20 |
| Data di Pubblicazione | 2019-03-24 |
| Valutazione | 5.00/5 Totale 4 Valutazioni |
| Sviluppatore | Lucas Bürgy |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/burgyl/AddToShaarli |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Add to Shaarli",
"description": "This extension lets you add the current tab or a note to your Shaarli instance.",
"version": "1.1.0",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon.png"
},
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"activeTab",
"storage"
],
"commands": {
"add-url": {
"suggested_key": {
"default": "Alt+S"
},
"description": "Add current tab"
},
"add-note": {
"suggested_key": {
"default": "Alt+N"
},
"description": "Add a note"
}
}
} | |