Reading List
A read-it-later browser extension for people with overly ambitious bookmarking habits.
Cos'è Reading List?
Reading List è un'estensione di Chrome sviluppata da http://emanuelfeld.github.io, e la sua funzione principale è "A read-it-later browser extension for people with overly ambitious bookmarking habits.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reading List
Scarica i file di estensione Reading List in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
* All links are removed after a week, so either read it or forget about it * Pages bookmarked on the same day are grouped together * New bookmarks are placed at the bottom, rather than the top, so you are less distracted by flashy new links * URLs are backed up to the Internet Archive automatically
Informazioni di Base sull'Estensione
Nome | |
ID | doaafjmonnoioanhdjllgjofacelikhl |
URL Ufficiale | https://chrome.google.com/webstore/detail/reading-list/doaafjmonnoioanhdjllgjofacelikhl |
Descrizione | A read-it-later browser extension for people with overly ambitious bookmarking habits. |
Dimensione del File | 17.24 KB |
Conteggio Installazioni | 146 |
Versione Corrente | 0.4 |
Ultimo Aggiornamento | 2018-01-09 |
Data di Pubblicazione | 2018-01-09 |
Valutazione | 3.50/5 Totale 2 Valutazioni |
Sviluppatore | http://emanuelfeld.github.io |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/emanuelfeld/reading-list |
URL della Pagina di Aiuto | https://github.com/emanuelfeld/reading-list |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reading List", "version": "0.4", "description": "A read-it-later browser extension for people with overly ambitious bookmarking habits.", "author": "Emanuel Feld", "background": { "scripts": [ "js\/background.js" ] }, "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "web_accessible_resources": [ "popup.html", "index.html", "js\/index.js", "js\/popup.js" ], "permissions": [ "https:\/\/web.archive.org\/*", "contextMenus", "storage", "tabs" ], "browser_action": { "default_title": "Reading List", "default_popup": "popup.html", "default_icon": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" } } } |