WordPress Theme Detector

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

Cos'è WordPress Theme Detector?

WordPress Theme Detector è un'estensione di Chrome sviluppata da WPRiders, e la sua funzione principale è "This chrome extension searches for any active wordpress themes in your active chrome tab, and will display the theme name.…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione WordPress Theme Detector

Scarica i file di estensione WordPress Theme Detector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome WordPress Theme Detector WordPress Theme Detector
ID bmnoifhggaaknclichiggjlpcdohhkhe
URL Ufficiale https://chrome.google.com/webstore/detail/wordpress-theme-detector/bmnoifhggaaknclichiggjlpcdohhkhe
Descrizione This chrome extension searches for any active wordpress themes in your active chrome tab, and will display the theme name.…
Dimensione del File 41.21 KB
Conteggio Installazioni 574
Versione Corrente 1.2.1
Ultimo Aggiornamento 2018-07-31
Data di Pubblicazione 2018-07-31
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore WPRiders
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}