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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } } |