isTrust
Verify the trustability of any website
Vad är isTrust?
isTrust är en Chrome-tillägg utvecklad av Internet Society Belgium, och dess huvudfunktion är "Verify the trustability of any website".
Tilläggsskärmbilder
Ladda ner isTrust-förlängningens CRX-fil
Ladda ner isTrust-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
A website seems suspicious ? Find out by checking: 🌐 domain 📨 communication 🧬 Open source : https://github.com/Internet-Society-Belgium/isTrust
Grundläggande Information om Tillägg
Namn | isTrust |
ID | kinlknncggaihnhdcalijdmpbhbflalm |
Officiell webbadress | https://chromewebstore.google.com/detail/istrust/kinlknncggaihnhdcalijdmpbhbflalm |
Beskrivning | Verify the trustability of any website |
Filstorlek | 324 KB |
Antal Installationer | 39 |
Aktuell Version | 3.9.1 |
Senast Uppdaterad | 2022-03-15 |
Publiceringsdatum | 2021-10-05 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Internet Society Belgium |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.istrust.org/ |
Hjälpsida URL | https://github.com/Internet-Society-Belgium/isTrust/issues/new/choose |
URL till Sekretesspolicy Sidan | https://www.internetsociety.be/privacy-policy |
Stödda Språk | 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" } |