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ファイルをダウンロード

Theme Style Query String Viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}