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.
扩展基本信息
名称 | 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" } |