Warn Me
Warns you if there are any subjects that need a trigger warning on a webpage
什麼是Warn Me?
Warn Me是由Linus G.開發的Chrome擴展程式,該擴展的主要功能是“Warns you if there are any subjects that need a trigger warning on a webpage”。
擴展截圖
下載Warn Me擴展crx文件
下載Warn Me擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension will warn you if any potentially triggering subjects appear on a webpage, allowing you to browse the Internet safely. You can also blacklist your own keywords if you want to add your own. The storage permission is used only to store words that you personally think are triggering, if you want to add your own. Enjoy!
擴展基本資訊
名稱 | Warn Me |
ID | koglokeamlegaaidhjnjdbifcpnkoafg |
官方網址 | https://chromewebstore.google.com/detail/warn-me/koglokeamlegaaidhjnjdbifcpnkoafg |
簡介 | Warns you if there are any subjects that need a trigger warning on a webpage |
檔案大小 | 160 KB |
安裝次數 | 64 |
目前版本 | 1.0 |
更新時間 | 2016-09-30 |
上架時間 | 2016-09-29 |
評分 | 4.17/5 共 12 次評分 |
開發者 | Linus G. |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/LinusGordon/warn-me |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Warn Me", "short_name": "Warn Me", "description": "Warns you if there are any subjects that need a trigger warning on a webpage", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "findtrig.js" ] } ], "permissions": [ "storage" ] } |