Kudani Snipper
Bookmark URLs and Feeds and send them to KudaniCloud
Kudani Snipperคืออะไร?
Kudani Snipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.kudani.com และคุณลักษณะหลักของมันคือ "Bookmark URLs and Feeds and send them to KudaniCloud"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Kudani Snipper
ดาวน์โหลดไฟล์ส่วนขยาย Kudani Snipper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Kudani Snipper is a browser extension that enables you to capture website addresses and RSS feeds where ever you are on the web. Saving them is easy. Simply select which folder to store the item, so when you next login to KudaniCloud - the saved items will be ready for you.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Kudani Snipper |
ID | honhcoadmdmlnlepogdkgfgedhhcdjbe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/kudani-snipper/honhcoadmdmlnlepogdkgfgedhhcdjbe |
คำอธิบาย | Bookmark URLs and Feeds and send them to KudaniCloud |
ขนาดไฟล์ | 102 KB |
จำนวนการติดตั้ง | 426 |
เวอร์ชันปัจจุบัน | 1.6 |
อัปเดตครั้งล่าสุด | 2018-01-03 |
วันที่เผยแพร่ | 2018-01-03 |
คะแนน | 4.86/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | https://www.kudani.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.kudani.com |
URL หน้านโยบายความเป็นส่วนตัว | http://www.headlinr.com/privacy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "name": "Kudani Snipper", "description": "Bookmark URLs and Feeds and send them to KudaniCloud", "version": "1.6", "permissions": [ "cookies", "tabs", "*:\/\/*.kudani.com\/", "http:\/\/localhost\/*", "tabs" ], "icons": { "48": "assets\/icon-48.png", "128": "assets\/icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "assets\/icon.png", "default_title": "There's a feed in this page. Open Kudani Snipper to save it!" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ] } |