Rocket Readability
This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.
Hvad er Rocket Readability?
Rocket Readability er en Chrome-udvidelse udviklet af iamjpg, og dens hovedfunktion er "This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.".
Udvidelsesskærmbilleder
Download Rocket Readability-udvidelses-CRX-fil
Download Rocket Readability-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension simply parses web pages cutting out ads and unnecessary distractions leaving you with what you want: the content.
Grundlæggende oplysninger om udvidelsen
Navn | Rocket Readability |
ID | fhckbdfnalikpmcmcpcpkkdlhabngbod |
Officiel URL | https://chromewebstore.google.com/detail/rocket-readability/fhckbdfnalikpmcmcpcpkkdlhabngbod |
Beskrivelse | This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read. |
Filstørrelse | 33.18 KB |
Antal Installationer | 9,000 |
Nuværende Version | 0.0.0.6 |
Senest Opdateret | 2020-02-10 |
Udgivelsesdato | 2020-02-10 |
Bedømmelse | 3.68/5 Samlet 19 Bedømmelser |
Udvikler | iamjpg |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |