Rocket Readability
This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.
Cos'è Rocket Readability?
Rocket Readability è un'estensione di Chrome sviluppata da iamjpg, e la sua funzione principale è "This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Rocket Readability
Scarica i file di estensione Rocket Readability 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
This extension simply parses web pages cutting out ads and unnecessary distractions leaving you with what you want: the content.
Informazioni di Base sull'Estensione
Nome | Rocket Readability |
ID | fhckbdfnalikpmcmcpcpkkdlhabngbod |
URL Ufficiale | https://chromewebstore.google.com/detail/rocket-readability/fhckbdfnalikpmcmcpcpkkdlhabngbod |
Descrizione | This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read. |
Dimensione del File | 33.18 KB |
Conteggio Installazioni | 9,000 |
Versione Corrente | 0.0.0.6 |
Ultimo Aggiornamento | 2020-02-10 |
Data di Pubblicazione | 2020-02-10 |
Valutazione | 3.68/5 Totale 19 Valutazioni |
Sviluppatore | iamjpg |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Rocket Readability", "description": "This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.", "version": "0.0.0.6", "background": { "scripts": [ "javascripts\/background.js" ] }, "browser_action": { "default_icon": "rocket.png" }, "icons": { "16": "rocket.png", "48": "rocket.png", "128": "rocket.png" }, "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "javascripts\/readability.js", "javascripts\/app.js" ], "css": [ "styles\/app.css" ] } ] } |