Theme Style Query String Viewer

Quickly view query string versions appended to style.css files within WordPress themes.

Theme Style Query String Viewer란 무엇입니까?

Theme Style Query String Viewer은(는) Joseph Fusco에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly view query string versions appended to style.css files within WordPress themes."입니다.

확장 프로그램 스크린샷

screenshot

Theme Style Query String Viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Chrome extension to help quickly identify the WordPress theme version query strings.                    

확장 프로그램 기본 정보

이름 Theme Style Query String Viewer Theme Style Query String Viewer
ID dackloklmagidklapkiefoeljpaogopf
공식 URL https://chromewebstore.google.com/detail/theme-style-query-string/dackloklmagidklapkiefoeljpaogopf
설명 Quickly view query string versions appended to style.css files within WordPress themes.
파일 크기 9.85 KB
설치 횟수 13
현재 버전 1.0.1
최근 업데이트 2017-02-02
출시 날짜 2017-02-02
개발자 Joseph Fusco
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/josephfusco/theme-style-query-string-viewer
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Theme Style Query String Viewer",
    "description": "Quickly view query string versions appended to style.css files within WordPress themes.",
    "version": "1.0.1",
    "offline_enabled": true,
    "homepage_url": "https:\/\/github.com\/josephfusco\/theme-style-query-string-viewer",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_title": "WordPress Theme Version Check",
        "default_popup": "popup.html"
    }
}