Add to Shaarli
This extension lets you add the current tab or a note to your Shaarli instance.
Qu'est-ce que Add to Shaarli ?
Add to Shaarli est une extension Chrome développée par Lucas Bürgy, et sa fonction principale est "This extension lets you add the current tab or a note to your Shaarli instance.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Add to Shaarli
Téléchargez les fichiers d'extension Add to Shaarli 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
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
Informations de Base sur l'Extension
Nom | Add to Shaarli |
ID | jhfblapoehcfajokolimghdfmeeakbee |
URL Officiel | https://chromewebstore.google.com/detail/add-to-shaarli/jhfblapoehcfajokolimghdfmeeakbee |
Description | This extension lets you add the current tab or a note to your Shaarli instance. |
Taille du Fichier | 99.53 KB |
Nombre d'Installations | 1,473 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2021-03-20 |
Date de Publication | 2019-03-24 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | Lucas Bürgy |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/burgyl/AddToShaarli |
Langues Prises en Charge | 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" } } } |