SiteRecipe

SiteRecipe.com Technology lookup

Hvad er SiteRecipe?

SiteRecipe er en Chrome-udvidelse udviklet af SiteRecipe.com, og dens hovedfunktion er "SiteRecipe.com Technology lookup".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download SiteRecipe-udvidelses-CRX-fil

Download SiteRecipe-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        SiteRecipe is a technlogy lookup extension provided by SiteRecipe.com 
 the extension will provide you a report of  web technologies used in a visited website in you tabs, it will help you find out what web technolgies a website is built with.                    

Grundlæggende oplysninger om udvidelsen

Navn SiteRecipe SiteRecipe
ID mincmlimlnngndejpmiapoeefiicnlbi
Officiel URL https://chromewebstore.google.com/detail/siterecipe/mincmlimlnngndejpmiapoeefiicnlbi
Beskrivelse SiteRecipe.com Technology lookup
Filstørrelse 141 KB
Antal Installationer 48
Nuværende Version 1.0.0
Senest Opdateret 2021-11-24
Udgivelsesdato 2021-11-23
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler SiteRecipe.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://siterecipe.com
Hjælpeside-URL https://siterecipe.com/contact_us
URL til Fortrolighedspolitik Side https://siterecipe.com/privacy
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SiteRecipe",
    "description": "SiteRecipe.com Technology lookup",
    "version": "1.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content.js",
                "popup.js",
                "bootstrap.min.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "bootstrap.min.js",
            "background.js",
            "jquery.min.js"
        ]
    },
    "permissions": [
        "https:\/\/siterecipe.com\/*",
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_popup": "Popup.html",
        "default_title": "SiteRecipe Technology Lookup",
        "default_icon": "images\/siterecipe.png"
    }
}