TechsFound
Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies
Cos'è TechsFound?
TechsFound è un'estensione di Chrome sviluppata da https://techsfound.com, e la sua funzione principale è "Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TechsFound
Scarica i file di estensione TechsFound in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension help you to identify running technologies on website. It identifies different web technologies, Page Loading time, SSL Details, Website IP Address, List cookies, Wordpress plugins and themes.
Informazioni di Base sull'Estensione
Nome | TechsFound |
ID | anbcbibcejpgaohknmjoikdepodjfiac |
URL Ufficiale | https://chromewebstore.google.com/detail/techsfound/anbcbibcejpgaohknmjoikdepodjfiac |
Descrizione | Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies |
Dimensione del File | 5.5 MB |
Conteggio Installazioni | 567 |
Versione Corrente | 2.0.2 |
Ultimo Aggiornamento | 2021-05-24 |
Data di Pubblicazione | 2021-01-10 |
Valutazione | 5.00/5 Totale 7 Valutazioni |
Sviluppatore | https://techsfound.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.techsfound.com |
URL della Pagina di Aiuto | https://www.techsfound.com |
URL della Pagina della Politica sulla Privacy | https://www.techsfound.com/privacy |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TechsFound", "description": "Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies", "version": "2.0.2", "default_locale": "en", "icons": { "16": "images\/Icon-16.png", "32": "images\/Icon-32.png", "72": "images\/Icon-72.png", "152": "images\/Icon-152.png" }, "browser_action": { "default_title": "TechsFound", "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "js\/techsfound.js", "js\/background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_idle" }, { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/performance.js" ] } ], "web_accessible_resources": [ "js\/inject.js" ], "permissions": [ "cookies", "tabs", "webRequest", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self'; object-src 'self'" } |