isTrust
Verify the trustability of any website
Что такое isTrust?
isTrust - это расширение Chrome, разработанное Internet Society Belgium, и его основная функция - "Verify the trustability of any website".
Снимки экрана расширения
Скачать файл CRX расширения isTrust
Скачайте файлы расширений 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" } |