WordPress Theme Detector

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

WordPress Theme Detector क्या है?

WordPress Theme Detector WPRiders द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This chrome extension searches for any active wordpress themes in your active chrome tab, and will display the theme name.…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WordPress Theme Detector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम WordPress Theme Detector WordPress Theme Detector
ID bmnoifhggaaknclichiggjlpcdohhkhe
आधिकारिक URL https://chrome.google.com/webstore/detail/wordpress-theme-detector/bmnoifhggaaknclichiggjlpcdohhkhe
विवरण This chrome extension searches for any active wordpress themes in your active chrome tab, and will display the theme name.…
फ़ाइल का आकार 41.21 KB
स्थापना संख्या 574
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2018-07-31
प्रकाशन तिथि 2018-07-31
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर WPRiders
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}