Save to Pocket (mini)
Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.
Save to Pocket (mini)คืออะไร?
Save to Pocket (mini) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย evmar และคุณลักษณะหลักของมันคือ "Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Save to Pocket (mini)
ดาวน์โหลดไฟล์ส่วนขยาย Save to Pocket (mini) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
I think Pocket is great, but I don't like how their Chrome extension requires so many permissions. (It even makes use of those permissions to e.g. modify the Hacker News page. I appreciate this can be turned off via their settings but I'd prefer it didn't even have the capability.) This extension is the minimal code to auth into Pocket and save URLs into it. Read the source here: https://github.com/martine/pocket-mini For more features, use the official Pocket extension: https://chrome.google.com/webstore/detail/save-to-pocket/niloccemoadcdkdjlinkgdfekeahmflj
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Save to Pocket (mini) |
ID | calnfcidhlhdmmmnicdpddbmmjmfohem |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/save-to-pocket-mini/calnfcidhlhdmmmnicdpddbmmjmfohem |
คำอธิบาย | Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions. |
ขนาดไฟล์ | 8.66 KB |
จำนวนการติดตั้ง | 1,016 |
เวอร์ชันปัจจุบัน | 1 |
อัปเดตครั้งล่าสุด | 2014-08-08 |
วันที่เผยแพร่ | 2014-08-08 |
คะแนน | 4.69/5 รวมทั้งหมด 16 คะแนน |
ผู้พัฒนา | evmar |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/martine/pocket-mini |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Save to Pocket (mini)", "description": "Adds a toolbar button to save the current page to Pocket, without requiring the \"all data\" or \"all websites\" permissions.", "version": "1", "browser_action": { "default_icon": "icon.png", "default_title": "Add to Pocket", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/getpocket.com\/" ], "web_accessible_resources": [ "auth.html" ], "manifest_version": 2 } |