WordPress Theme Detector

This chrome extension searches for any active wordpress themes in your active chrome tab, and will display the theme name.…

Co je WordPress Theme Detector?

WordPress Theme Detector je rozšíření Chrome vyvinuté WPRiders, a jeho hlavní funkcí je „This chrome extension searches for any active wordpress themes in your active chrome tab, and will display the theme name.…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření WordPress Theme Detector

Stáhněte si soubory rozšíření WordPress Theme Detector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This chrome extension searches for any active wordpress themes in your active chrome tab, and will display the theme name.

Advantages:
    - If you are estimating small Wordpress customizations knowing if the client has a child theme active is a must for good estimates
    - Maybe you like the appearance of a website, now you can find out what theme they are using.

Features:
    - Detects all active themes and displays their name
    - Detects if a theme is used a child theme(really useful when estimating new projects)

Limitations:
    - This extension will not work if the site is using optimization plugins like Autoptimise, that removes all the comments containing the theme information.

Extension developed by WPRiders - your Technical WordPress Development agency www.wpriders.com                    

Základní Informace o Rozšíření

Název WordPress Theme Detector WordPress Theme Detector
ID bmnoifhggaaknclichiggjlpcdohhkhe
Oficiální URL https://chrome.google.com/webstore/detail/wordpress-theme-detector/bmnoifhggaaknclichiggjlpcdohhkhe
Popis This chrome extension searches for any active wordpress themes in your active chrome tab, and will display the theme name.…
Velikost souboru 41.21 KB
Počet instalací 574
Aktuální Verze 1.2.1
Poslední Aktualizace 2018-07-31
Datum Vydání 2018-07-31
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář WPRiders
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WordPress Theme Detector",
    "author": "Florin from WPRiders",
    "version": "1.2.1",
    "permissions": [
        "tabs",
        "",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}