Rocket Readability

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

什么是Rocket Readability?

Rocket Readability是由iamjpg开发的Chrome扩展程序,该扩展的主要功能是“This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Rocket Readability扩展crx文件

下载Rocket Readability扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Rocket Readability Rocket Readability
ID fhckbdfnalikpmcmcpcpkkdlhabngbod
官方URL https://chromewebstore.google.com/detail/rocket-readability/fhckbdfnalikpmcmcpcpkkdlhabngbod
简介 This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.
文件大小 33.18 KB
安装次数 9,000
当前版本 0.0.0.6
更新时间 2020-02-10
上架时间 2020-02-10
评分 3.68/5 共19次评分
开发者 iamjpg
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
            ]
        }
    ]
}