Mark As Read
Mark a page as read by clicking on the extension icon.
Mark As Readคืออะไร?
Mark As Read เป็นส่วนขยายของ Chrome ที่พัฒนาโดย edoreld และคุณลักษณะหลักของมันคือ "Mark a page as read by clicking on the extension icon."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mark As Read
ดาวน์โหลดไฟล์ส่วนขยาย Mark As Read ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Extra Features: - Backup & Restore links To activate these extra features, right click on the extension icon and click on Options.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Mark As Read |
ID | hiflhkmicfagennabmnfcnnlpkmidfjj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mark-as-read/hiflhkmicfagennabmnfcnnlpkmidfjj |
คำอธิบาย | Mark a page as read by clicking on the extension icon. |
ขนาดไฟล์ | 11.28 KB |
จำนวนการติดตั้ง | 550 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2022-03-11 |
วันที่เผยแพร่ | 2020-05-09 |
คะแนน | 3.73/5 รวมทั้งหมด 15 คะแนน |
ผู้พัฒนา | edoreld |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/edoreld/mark-as-read |
URL หน้าช่วยเหลือ | https://github.com/edoreld/mark-as-read/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mark As Read", "version": "1.0.0", "description": "Mark a page as read by clicking on the extension icon. ", "icons": { "128": "icon_128.png", "48": "icon_48.png", "16": "icon_16.png" }, "browser_action": [], "background": { "scripts": [ "background.js" ] }, "commands": { "mark_page": { "suggested_key": { "default": "Ctrl+Shift+Z" }, "description": "Mark\/unmark the current page" } }, "permissions": [ "activeTab", "tabs", "storage", "downloads", "unlimitedStorage" ], "options_page": "options.html" } |