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 |
官方網址 | 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\/*" ] } |