Add to Shaarli
This extension lets you add the current tab or a note to your Shaarli instance.
ما هو Add to Shaarli؟
Add to Shaarli هو إضافة Chrome تم تطويرها بواسطة Lucas Bürgy، والميزة الرئيسية لها هي "This extension lets you add the current tab or a note to your Shaarli instance.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Add to Shaarli
قم بتنزيل ملفات الامتداد Add to Shaarli بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" } } } |