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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |