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开发的Chrome扩展程序,该扩展的主要功能是“This chrome extension searches for any active wordpress themes in your active chrome tab, and will display the theme name.…”。

扩展截图

screenshot

下载WordPress Theme Detector扩展crx文件

下载WordPress Theme Detector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}