TechsFound
Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies
What is TechsFound?
TechsFound is a Chrome extension developed by https://techsfound.com, and its main feature is "Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies".
Extension Screenshots
Download TechsFound Extension CRX File
Download TechsFound extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | TechsFound |
ID | anbcbibcejpgaohknmjoikdepodjfiac |
Official URL | https://chromewebstore.google.com/detail/techsfound/anbcbibcejpgaohknmjoikdepodjfiac |
Description | Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies |
File Size | 5.5 MB |
Installation Count | 567 |
Current Version | 2.0.2 |
Last Updated | 2021-05-24 |
Publish Date | 2021-01-10 |
Rating | 5.00/5 Total 7 Ratings |
Developer | https://techsfound.com |
[email protected] | |
Payment Type | free |
Extension Website | https://www.techsfound.com |
Help Page URL | https://www.techsfound.com |
Privacy Policy Page URL | https://www.techsfound.com/privacy |
Supported Languages | 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'" } |