Add to Shaarli
This extension lets you add the current tab or a note to your Shaarli instance.
Add to Shaarli क्या है?
Add to Shaarli Lucas Bürgy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension lets you add the current tab or a note to your Shaarli instance."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Add to Shaarli एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Add to Shaarli |
ID | jhfblapoehcfajokolimghdfmeeakbee |
आधिकारिक URL | https://chromewebstore.google.com/detail/add-to-shaarli/jhfblapoehcfajokolimghdfmeeakbee |
विवरण | This extension lets you add the current tab or a note to your Shaarli instance. |
फ़ाइल का आकार | 99.53 KB |
स्थापना संख्या | 1,473 |
वर्तमान संस्करण | 1.1.0 |
अंतिम अपडेट | 2021-03-20 |
प्रकाशन तिथि | 2019-03-24 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | Lucas Bürgy |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/burgyl/AddToShaarli |
समर्थित भाषाएँ | 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" } } } |