Simple Pocket
Simple Pocket Extension for Chrome - The simplest way to save web pages for read it later
Simple Pocketคืออะไร?
Simple Pocket เป็นส่วนขยายของ Chrome ที่พัฒนาโดย better read it later และคุณลักษณะหลักของมันคือ "Simple Pocket Extension for Chrome - The simplest way to save web pages for read it later"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Pocket
ดาวน์โหลดไฟล์ส่วนขยาย Simple Pocket ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Add page to "read it later" service by simple way. This addon DO NOT break your HOME PAGE. DO NOT inject in to each page and DO NOT spy your usual browsing. It just add URL to GetPocket only when you click on the button. That's is! Feel free to touch me in comments and making 5 starts ;) Thanks.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Simple Pocket |
ID | kkmmcilocakhceaeelbgmmigimjlhcmb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/simple-pocket/kkmmcilocakhceaeelbgmmigimjlhcmb |
คำอธิบาย | Simple Pocket Extension for Chrome - The simplest way to save web pages for read it later |
ขนาดไฟล์ | 74.48 KB |
จำนวนการติดตั้ง | 195 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2017-03-19 |
วันที่เผยแพร่ | 2017-03-19 |
คะแนน | 4.56/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | better read it later |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Pocket", "version": "1.1", "manifest_version": 2, "description": "__MSG_extDescription__", "default_locale": "en", "background": { "persistent": true, "scripts": [ "js\/jquery-2.1.1.min.js", "js\/utils.js", "js\/all.js" ] }, "browser_action": { "default_icon": { "16": "images\/browser-action-icon.png" }, "default_title": "__MSG_browserActionTitle__" }, "permissions": [ "tabs", "contextMenus", "cookies", "notifications", "https:\/\/readitlaterlist.com\/", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "128": "images\/icon128.png", "256": "images\/icon256.png" }, "content_scripts": [ { "matches": [ "*:\/\/getpocket.com\/extension_login_success" ], "js": [ "js\/jquery-2.1.1.min.js", "js\/utils.js", "js\/auth-login.js" ] }, { "matches": [ "*:\/\/getpocket.com\/login?e=4" ], "js": [ "js\/jquery-2.1.1.min.js", "js\/utils.js", "js\/auth-logout.js" ] } ], "web_accessible_resources": [ "images\/error.png", "images\/success.png" ] } |