Instapaper Reloaded
Some tweaks to instapaper.com
Instapaper Reloadedคืออะไร?
Instapaper Reloaded เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Darrin Holst และคุณลักษณะหลักของมันคือ "Some tweaks to instapaper.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Instapaper Reloaded
ดาวน์โหลดไฟล์ส่วนขยาย Instapaper Reloaded ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension tweaks the layout of instapaper.com and adds some keyboard shortcuts. Press ? on instapaper.com for all the shortcuts. Press Ctrl + i on any other web site to add an article to your instapaper account. 07-03-2014: Time permitted to get it mostly working with the new site design. #ymmv 08-30-2013: the site redesign broke almost everything. Disabling stuff for now. I'll bring it back as time permits 03-24-2013: added ability to archive from the article text view 09-13-2012: added option to reverse the sort order of unread articles
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Instapaper Reloaded |
ID | jhcgodhomejkefepnpccebphcpnpdbni |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/instapaper-reloaded/jhcgodhomejkefepnpccebphcpnpdbni |
คำอธิบาย | Some tweaks to instapaper.com |
ขนาดไฟล์ | 51.43 KB |
จำนวนการติดตั้ง | 123 |
เวอร์ชันปัจจุบัน | 3.0.1 |
อัปเดตครั้งล่าสุด | 2014-07-13 |
วันที่เผยแพร่ | 2014-07-13 |
คะแนน | 4.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Darrin Holst |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Instapaper Reloaded", "version": "3.0.1", "description": "Some tweaks to instapaper.com", "permissions": [ "https:\/\/www.instapaper.com\/" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*.instapaper.com\/*" ], "css": [ "css\/reloaded.css" ], "js": [ "javascripts\/jquery.js", "javascripts\/jquery.hotkeys.js", "javascripts\/scroller.js", "javascripts\/reloaded.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "javascripts\/opener.js" ] } ], "background": { "scripts": [ "javascripts\/background.js" ] }, "options_page": "html\/options.html" } |