TechsFound

Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies

Co to jest TechsFound?

TechsFound to rozszerzenie Chrome opracowane przez https://techsfound.com, a jego główną funkcją jest „Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia TechsFound

Pobierz pliki rozszerzeń TechsFound w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa TechsFound TechsFound
ID anbcbibcejpgaohknmjoikdepodjfiac
Oficjalny URL https://chromewebstore.google.com/detail/techsfound/anbcbibcejpgaohknmjoikdepodjfiac
Opis Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies
Rozmiar pliku 5.5 MB
Liczba instalacji 567
Aktualna Wersja 2.0.2
Ostatnia Aktualizacja 2021-05-24
Data Publikacji 2021-01-10
Ocena 5.00/5 Łącznie 7 Oceny
Deweloper https://techsfound.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.techsfound.com
Adres URL Strony Pomocy https://www.techsfound.com
Adres URL Strony Polityki Prywatności https://www.techsfound.com/privacy
Obsługiwane Języki 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'"
}