TechsFound
Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies
什么是TechsFound?
TechsFound是由https://techsfound.com开发的Chrome扩展程序,该扩展的主要功能是“Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies”。
扩展截图
下载TechsFound扩展crx文件
下载TechsFound扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | TechsFound |
ID | anbcbibcejpgaohknmjoikdepodjfiac |
官方URL | https://chromewebstore.google.com/detail/techsfound/anbcbibcejpgaohknmjoikdepodjfiac |
简介 | Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies |
文件大小 | 5.5 MB |
安装次数 | 567 |
当前版本 | 2.0.2 |
更新时间 | 2021-05-24 |
上架时间 | 2021-01-10 |
评分 | 5.00/5 共7次评分 |
开发者 | https://techsfound.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.techsfound.com |
帮助页面URL | https://www.techsfound.com |
隐私政策页面URL | https://www.techsfound.com/privacy |
支持的语言 | 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'" } |