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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}