ModClear
Clears notifications on click
什么是ModClear?
ModClear是由JonLuca开发的Chrome扩展程序,该扩展的主要功能是“Clears notifications on click”。
扩展截图
下载ModClear扩展crx文件
下载ModClear扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Provides a quick way to archive all messages quickly on the new reddit modmail, both for notifications and conversations!
扩展基本信息
名称 | ModClear |
ID | gpcmcddkhaninomigjcgabkogknhblbm |
官方URL | https://chromewebstore.google.com/detail/modclear/gpcmcddkhaninomigjcgabkogknhblbm |
简介 | Clears notifications on click |
文件大小 | 84.55 KB |
安装次数 | 29 |
当前版本 | 1.3 |
更新时间 | 2017-06-25 |
上架时间 | 2017-06-25 |
评分 | 4.00/5 共4次评分 |
开发者 | JonLuca |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/jonluca/ModClear |
隐私政策页面URL | https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ModClear", "description": "Clears notifications on click", "version": "1.3", "background": { "scripts": [ "js\/jquery-2.1.1.min.js", "js\/background.js" ] }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/mod.reddit.com\/*", "https:\/\/mod.reddit.com\/*" ], "js": [ "js\/jquery-2.1.1.min.js", "content_script.js" ] } ], "icons": { "64": "images\/icon64.png", "32": "images\/icon32.png", "128": "images\/icon128.png" }, "page_action": { "default_title": "ModClear", "default_icon": "images\/hover.png" }, "homepage_url": "https:\/\/github.com\/jonluca\/ModClear\/", "web_accessible_resources": [ "js\/jquery-2.1.1.min.js", "images\/*" ] } |