My Reading Mode
Show web pages as a reading mode by your defines.
My Reading Modeคืออะไร?
My Reading Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.tnksoft.com และคุณลักษณะหลักของมันคือ "Show web pages as a reading mode by your defines."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย My Reading Mode
ดาวน์โหลดไฟล์ส่วนขยาย My Reading Mode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
"My Reading Mode" is the web filtering extension that filters to specific web sites which you defined. Unlike "Removes unnecessary things later" Ad-Blockers, by the program "Keeps only required things first", it shows to you the necessary content which you want to read quickly. In order to filter, you need to specify the tag on the web page. But, there is no probrem even if you don't have the knowledge of HTML. You can select a tag easily by clicking a content on the target page by using wizard mode. In principle, all the JavaScripts are blocked before downloading.Much advertisements and animation are no longer shown because a script is required for almost all web advertising. Of course, You can specify the exception. In addition, if it's a widget of Twitter, Facebook, and YouTube, you can add to an exception easily only by clicking the check box. You can divide into three columns at the maximum, and can assign a text to each column (Column area is able to resize by dragging a mouse). If it's a site of the format includes a keyword in url like dictionary service, you can move a page by entering a keyword at the option search bar. Shifting to other account or a browser is simple because edited data can output and input as a text. When you would like to show an original page at a filtered page, please select "Reload without filters" from a context menu.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | My Reading Mode |
ID | jfbiibdhdpddkjdhphcpbklmepppgnmi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/my-reading-mode/jfbiibdhdpddkjdhphcpbklmepppgnmi |
คำอธิบาย | Show web pages as a reading mode by your defines. |
ขนาดไฟล์ | 60.3 KB |
จำนวนการติดตั้ง | 391 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2023-11-20 |
วันที่เผยแพร่ | 2016-09-06 |
คะแนน | 3.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://www.tnksoft.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.tnksoft.com/soft/internet/myreadingmode/ |
URL หน้านโยบายความเป็นส่วนตัว | https://www.tnksoft.com/soft/internet/privacy.php |
ภาษาที่รองรับ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_title__", "description": "__MSG_about__", "author": "TNK Software \/ Tanaka Yusuke", "homepage_url": "https:\/\/www.tnksoft.com\/", "version": "1.0.1", "default_locale": "en", "icons": { "16": "res\/icon16.png", "32": "res\/icon32.png", "64": "res\/icon64.png", "128": "res\/icon128.png" }, "browser_action": { "default_icon": { "16": "res\/icon16.png", "32": "res\/icon32.png", "64": "res\/icon64.png", "128": "res\/icon128.png" } }, "options_page": "setting\/index.htm", "background": { "persistent": true, "scripts": [ "util.js", "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "zepto.min.js", "util.js", "readingmode\/before.js" ], "css": [], "run_at": "document_start", "all_frames": false }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "wizmode\/select.js", "dialog\/dialog.js" ], "css": [ "wizmode\/select.css", "dialog\/dialog.css" ], "run_at": "document_idle", "all_frames": false }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "readingmode\/filter.js", "readingmode\/after.js" ], "css": [ "readingmode\/style.css" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "storage", "tabs", "contextMenus", "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*" ] } |