Rocket Readability

This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.

Wat is Rocket Readability?

Rocket Readability is een Chrome-extensie ontwikkeld door iamjpg, en de belangrijkste functie is "This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Rocket Readability

Download Rocket Readability-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This extension simply parses web pages cutting out ads and unnecessary distractions leaving you with what you want: the content.                    

Basisinformatie over de Extensie

Naam Rocket Readability Rocket Readability
ID fhckbdfnalikpmcmcpcpkkdlhabngbod
Officiële URL https://chromewebstore.google.com/detail/rocket-readability/fhckbdfnalikpmcmcpcpkkdlhabngbod
Beschrijving This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.
Bestandsgrootte 33.18 KB
Aantal Installaties 9,000
Huidige Versie 0.0.0.6
Laatst Bijgewerkt 2020-02-10
Publicatiedatum 2020-02-10
Beoordeling 3.68/5 Totaal 19 Beoordelingen
Ontwikkelaar iamjpg
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}