Add to Shaarli
This extension lets you add the current tab or a note to your Shaarli instance.
What is Add to Shaarli?
Add to Shaarli is a Chrome extension developed by Lucas Bürgy, and its main feature is "This extension lets you add the current tab or a note to your Shaarli instance.".
Extension Screenshots
Download Add to Shaarli Extension CRX File
Download Add to Shaarli extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Add to Shaarli |
ID | jhfblapoehcfajokolimghdfmeeakbee |
Official URL | 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. |
File Size | 99.53 KB |
Installation Count | 1,473 |
Current Version | 1.1.0 |
Last Updated | 2021-03-20 |
Publish Date | 2019-03-24 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Lucas Bürgy |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/burgyl/AddToShaarli |
Supported Languages | 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" } } } |