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
电子邮箱 [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"
    }
}