Feedly Open All Unread
Adds a button to feedly.com to open all unread articles in new tabs
Apa itu Feedly Open All Unread?
Feedly Open All Unread adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Adds a button to feedly.com to open all unread articles in new tabs".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Feedly Open All Unread
Unduh file ekstensi Feedly Open All Unread dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Adds a button to feedly.com to open all unread articles in new tabs
Informasi Dasar Ekstensi
Nama | Feedly Open All Unread |
ID | blmhlkddebpmcjihpgbnhiinjfibekkf |
URL Resmi | https://chromewebstore.google.com/detail/feedly-open-all-unread/blmhlkddebpmcjihpgbnhiinjfibekkf |
Deskripsi | Adds a button to feedly.com to open all unread articles in new tabs |
Ukuran File | 8.03 KB |
Jumlah Instalasi | 15 |
Versi Saat Ini | 1.3 |
Terakhir Diperbarui | 2019-01-01 |
Tanggal Publikasi | 2019-01-01 |
Penilaian | 1.00/5 Total 1 Penilaian |
Pengembang | Unknown |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://github.com/cypressious/ff-feedly-open-unread |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Feedly Open All Unread", "version": "1.3", "description": "Adds a button to feedly.com to open all unread articles in new tabs", "homepage_url": "https:\/\/github.com\/cypressious\/ff-feedly-open-unread", "content_scripts": [ { "matches": [ "*:\/\/feedly.com\/*" ], "js": [ "browser-polyfill.min.js", "content-script.js" ] } ], "background": { "scripts": [ "browser-polyfill.min.js", "background.js" ] }, "options_ui": { "page": "options.html" }, "permissions": [ "storage" ] } |