Rocket Readability
This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.
Rocket Readability là gì?
Rocket Readability là một tiện ích mở rộng Chrome được phát triển bởi iamjpg, và tính năng chính của nó là "This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Rocket Readability
Tải xuống các tệp mở rộng Rocket Readability dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension simply parses web pages cutting out ads and unnecessary distractions leaving you with what you want: the content.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Rocket Readability |
ID | fhckbdfnalikpmcmcpcpkkdlhabngbod |
URL Chính Thức | https://chromewebstore.google.com/detail/rocket-readability/fhckbdfnalikpmcmcpcpkkdlhabngbod |
Mô tả | This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read. |
Kích Thước Tệp | 33.18 KB |
Số Lần Cài Đặt | 9,000 |
Phiên Bản Hiện Tại | 0.0.0.6 |
Cập Nhật Lần Cuối | 2020-02-10 |
Ngày Phát Hành | 2020-02-10 |
Đánh Giá | 3.68/5 Tổng số 19 Đánh Giá |
Nhà Phát Triển | iamjpg |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |