Rocket Readability
This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.
Was ist Rocket Readability?
Rocket Readability ist eine Chrome-Erweiterung, die von iamjpg entwickelt wurde, und ihr Hauptmerkmal ist "This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.".
Erweiterungsscreenshots
Rocket Readability-Erweiterungs-CRX-Datei herunterladen
Laden Sie Rocket Readability-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension simply parses web pages cutting out ads and unnecessary distractions leaving you with what you want: the content. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fhckbdfnalikpmcmcpcpkkdlhabngbod |
| Offizielle URL | https://chromewebstore.google.com/detail/rocket-readability/fhckbdfnalikpmcmcpcpkkdlhabngbod |
| Beschreibung | This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read. |
| Dateigröße | 33.18 KB |
| Installationsanzahl | 9,000 |
| Aktuelle Version | 0.0.0.6 |
| Letztes Update | 2020-02-10 |
| Veröffentlichungsdatum | 2020-02-10 |
| Bewertung | 3.68/5 Insgesamt 19 Bewertungen |
| Entwickler | iamjpg |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
}
]
} | |