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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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'" } |