Rocket Readability
This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read.
Rocket Readabilityคืออะไร?
Rocket Readability เป็นส่วนขยายของ Chrome ที่พัฒนาโดย iamjpg และคุณลักษณะหลักของมันคือ "This extension uses readability.js to parse out the 'cruft' leaving you with simply the article to read."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rocket Readability
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } ] } |