Instapaper highlights exporter
Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper.
Instapaper highlights exporterคืออะไร?
Instapaper highlights exporter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sawyerh และคุณลักษณะหลักของมันคือ "Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Instapaper highlights exporter
ดาวน์โหลดไฟล์ส่วนขยาย Instapaper highlights exporter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A simple Chrome extension that adds a button to your browser toolbar which, when clicked, will export your Instapaper highlights as an HTML page (with JSON output included).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Instapaper highlights exporter |
ID | oiklmlodhebcmaijgmheoafagfhbeohm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/instapaper-highlights-exp/oiklmlodhebcmaijgmheoafagfhbeohm |
คำอธิบาย | Visit instapaper.com/notes and click the extension icon to export your highlights from Instapaper. |
ขนาดไฟล์ | 113 KB |
จำนวนการติดตั้ง | 664 |
เวอร์ชันปัจจุบัน | 1.0.0.0 |
อัปเดตครั้งล่าสุด | 2016-09-02 |
วันที่เผยแพร่ | 2016-09-02 |
คะแนน | 4.88/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | sawyerh |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0.0.0", "name": "Instapaper highlights exporter", "description": "Visit instapaper.com\/notes and click the extension icon to export your highlights from Instapaper.", "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "48.0" } }, "background": { "scripts": [ "assets\/js\/background.min.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.instapaper.com\/*" ], "js": [ "\/assets\/js\/content-script.min.js" ] } ], "browser_action": { "default_icon": "\/assets\/images\/action-icon-38.png", "default_title": "Export Instapaper notes" }, "permissions": [ "https:\/\/www.instapaper.com\/", "downloads", "tabs" ], "icons": { "16": "assets\/images\/icon-16.png", "32": "assets\/images\/icon-32.png", "48": "assets\/images\/icon-48.png", "64": "assets\/images\/icon-64.png", "128": "assets\/images\/icon-128.png" } } |