TechsFound

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

Vad är TechsFound?

TechsFound är en Chrome-tillägg utvecklad av https://techsfound.com, och dess huvudfunktion är "Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner TechsFound-förlängningens CRX-fil

Ladda ner TechsFound-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn TechsFound TechsFound
ID anbcbibcejpgaohknmjoikdepodjfiac
Officiell webbadress https://chromewebstore.google.com/detail/techsfound/anbcbibcejpgaohknmjoikdepodjfiac
Beskrivning Find Running Technologies on Website, SSL certificate details, page loading time, clear cache and cookies
Filstorlek 5.5 MB
Antal Installationer 567
Aktuell Version 2.0.2
Senast Uppdaterad 2021-05-24
Publiceringsdatum 2021-01-10
Betyg 5.00/5 Totalt 7 Betyg
Utvecklare https://techsfound.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.techsfound.com
Hjälpsida URL https://www.techsfound.com
URL till Sekretesspolicy Sidan https://www.techsfound.com/privacy
Stödda Språk 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'"
}