Add to Shaarli
This extension lets you add the current tab or a note to your Shaarli instance.
Wat is Add to Shaarli?
Add to Shaarli is een Chrome-extensie ontwikkeld door Lucas Bürgy, en de belangrijkste functie is "This extension lets you add the current tab or a note to your Shaarli instance.".
Extensie Screenshots
Download het CRX-bestand van de extensie Add to Shaarli
Download Add to Shaarli-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Add to Shaarli |
ID | jhfblapoehcfajokolimghdfmeeakbee |
Officiële URL | https://chromewebstore.google.com/detail/add-to-shaarli/jhfblapoehcfajokolimghdfmeeakbee |
Beschrijving | This extension lets you add the current tab or a note to your Shaarli instance. |
Bestandsgrootte | 99.53 KB |
Aantal Installaties | 1,473 |
Huidige Versie | 1.1.0 |
Laatst Bijgewerkt | 2021-03-20 |
Publicatiedatum | 2019-03-24 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Lucas Bürgy |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/burgyl/AddToShaarli |
Ondersteunde Talen | 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" } } } |