Just Read
A feature-packed, customizable reader extension.
Just Readคืออะไร?
Just Read เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://justread.link และคุณลักษณะหลักของมันคือ "A feature-packed, customizable reader extension."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Just Read
ดาวน์โหลดไฟล์ส่วนขยาย Just Read ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Just Read is a feature-packed and customizable reader view. With one click (or less!), you can remove distractions like: - The page's styling - Ads - Popups - Comments And read the article in a customizable, simplified format - like a read mode but better! Users can: - Summarize the article using AI. - Use the default white and dark themes. - Modify your theme using a graphical editor or CSS. - Use a theme someone else has made (found at https://goo.gl/Z59SM4 ). - Use their very own custom styling. - Auto-run Just Read format on specific sites. - Use a keyboard shortcut to run Just Read. - Print the custom-styled version of the article. - Use the selection mode to choose exactly which text they want to select for reading. - Use the deletion mode to remove any unwanted content after selection. - Edit incorrect meta information generated. - Control which options Just Read uses. - Go straight to the next chapter from the Just Read view. Just Read Premium has even more features! - Permanently save the Just Read version of pages - Share the Just Read version of pages with others - Link directly to a section of the page - Highlight and annotate pages - Use a custom scrollbar - Auto-scroll the article - Apply domain-specific selectors Just Read collects zero data from users by default. If you sign up for an account with Just Read, only your email address is stored. Just Read sends analytics to no one else. Any data that Just Read stores is safely secured and private. Just Read is completely open source and can be found on GitHub here https://github.com/ZachSaucier/Just-Read Please read the README in the GitHub link above for more details about Just Read!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Just Read |
ID | dgmanlpmmkibanfdgjocnabmcaclkmod |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/just-read/dgmanlpmmkibanfdgjocnabmcaclkmod |
คำอธิบาย | A feature-packed, customizable reader extension. |
ขนาดไฟล์ | 326 KB |
จำนวนการติดตั้ง | 237,673 |
เวอร์ชันปัจจุบัน | 5.3.8 |
อัปเดตครั้งล่าสุด | 2023-12-23 |
วันที่เผยแพร่ | 2020-06-06 |
คะแนน | 4.66/5 รวมทั้งหมด 869 คะแนน |
ผู้พัฒนา | https://justread.link |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://justread.link/ |
URL หน้าช่วยเหลือ | https://github.com/ZachSaucier/Just-Read |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/ZachSaucier/Just-Read |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Just Read", "version": "5.3.8", "manifest_version": 3, "description": "A feature-packed, customizable reader extension.", "homepage_url": "https:\/\/github.com\/ZachSaucier\/Just-Read", "action": { "default_icon": "icons\/icon19.png", "default_title": "Just Read" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "commands": { "open-just-read": { "suggested_key": { "default": "Ctrl+Shift+L" }, "description": "Open the Just Read format for the current page" }, "select-text": { "suggested_key": { "default": "Ctrl+Shift+K" }, "description": "Enable user text selection mode using Just Read" } }, "background": { "service_worker": "background.js" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "web_accessible_resources": [ { "matches": [ "*:\/\/*\/*" ], "resources": [ "print.svg", "required-styles.css", "default-styles.css", "dark-styles.css", "hide-segments.css", "page.css", "options.js", "options.css", "fonts\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/justread.link\/*" ], "js": [ "messager.js" ] } ], "permissions": [ "tabs", "contextMenus", "storage", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ] } |