isTrust
Verify the trustability of any website
什么是isTrust?
isTrust是由Internet Society Belgium开发的Chrome扩展程序,该扩展的主要功能是“Verify the trustability of any website”。
扩展截图
下载isTrust扩展crx文件
下载isTrust扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A website seems suspicious ? Find out by checking: 🌐 domain 📨 communication 🧬 Open source : https://github.com/Internet-Society-Belgium/isTrust
扩展基本信息
名称 | isTrust |
ID | kinlknncggaihnhdcalijdmpbhbflalm |
官方URL | https://chromewebstore.google.com/detail/istrust/kinlknncggaihnhdcalijdmpbhbflalm |
简介 | Verify the trustability of any website |
文件大小 | 324 KB |
安装次数 | 39 |
当前版本 | 3.9.1 |
更新时间 | 2022-03-15 |
上架时间 | 2021-10-05 |
评分 | 5.00/5 共2次评分 |
开发者 | Internet Society Belgium |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.istrust.org/ |
帮助页面URL | https://github.com/Internet-Society-Belgium/isTrust/issues/new/choose |
隐私政策页面URL | https://www.internetsociety.be/privacy-policy |
支持的语言 | en,fr,nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extension_name__", "description": "__MSG_extension_description__", "author": "Internet Society Belgium", "default_locale": "en", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "unlimitedStorage", "alarms", "contextMenus", "geolocation" ], "icons": { "48": "icons\/icon.png", "96": "icons\/[email protected]" }, "background": { "scripts": [ "background\/index.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_scripts\/index.js" ] } ], "browser_action": { "default_popup": "popup\/index.html", "default_title": "__MSG_extension_name__", "default_icon": { "48": "icons\/icon.png", "96": "icons\/[email protected]" } }, "version": "3.9.1" } |