Rocket Readability
This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.
What is Rocket Readability?
Rocket Readability is a Chrome extension developed by iamjpg, and its main feature is "This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.".
Extension Screenshots
Download Rocket Readability Extension CRX File
Download Rocket Readability extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension simply parses web pages cutting out ads and unnecessary distractions leaving you with what you want: the content.
Extension Basic Information
Name | Rocket Readability |
ID | fhckbdfnalikpmcmcpcpkkdlhabngbod |
Official URL | https://chromewebstore.google.com/detail/rocket-readability/fhckbdfnalikpmcmcpcpkkdlhabngbod |
Description | This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read. |
File Size | 33.18 KB |
Installation Count | 9,000 |
Current Version | 0.0.0.6 |
Last Updated | 2020-02-10 |
Publish Date | 2020-02-10 |
Rating | 3.68/5 Total 19 Ratings |
Developer | iamjpg |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |