Mark As Read
Mark a page as read by clicking on the extension icon.
什麼是Mark As Read?
Mark As Read是由edoreld開發的Chrome擴展程式,該擴展的主要功能是“Mark a page as read by clicking on the extension icon.”。
擴展截圖
下載Mark As Read擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | hiflhkmicfagennabmnfcnnlpkmidfjj |
| 官方網址 | 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"
} | |