Add to Shaarli
This extension lets you add the current tab or a note to your Shaarli instance.
Was ist Add to Shaarli?
Add to Shaarli ist eine Chrome-Erweiterung, die von Lucas Bürgy entwickelt wurde, und ihr Hauptmerkmal ist "This extension lets you add the current tab or a note to your Shaarli instance.".
Erweiterungsscreenshots
Add to Shaarli-Erweiterungs-CRX-Datei herunterladen
Laden Sie Add to Shaarli-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Add to Shaarli |
ID | jhfblapoehcfajokolimghdfmeeakbee |
Offizielle URL | https://chromewebstore.google.com/detail/add-to-shaarli/jhfblapoehcfajokolimghdfmeeakbee |
Beschreibung | This extension lets you add the current tab or a note to your Shaarli instance. |
Dateigröße | 99.53 KB |
Installationsanzahl | 1,473 |
Aktuelle Version | 1.1.0 |
Letztes Update | 2021-03-20 |
Veröffentlichungsdatum | 2019-03-24 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | Lucas Bürgy |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/burgyl/AddToShaarli |
Unterstützte Sprachen | 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" } } } |