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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } ] } |