Theme Style Query String Viewer

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

What is Theme Style Query String Viewer?

Theme Style Query String Viewer is a Chrome extension developed by Joseph Fusco, and its main feature is "Quickly view query string versions appended to style.css files within WordPress themes.".

Extension Screenshots

screenshot

Download Theme Style Query String Viewer Extension CRX File

Download Theme Style Query String Viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Theme Style Query String Viewer Theme Style Query String Viewer
ID dackloklmagidklapkiefoeljpaogopf
Official URL https://chromewebstore.google.com/detail/theme-style-query-string/dackloklmagidklapkiefoeljpaogopf
Description Quickly view query string versions appended to style.css files within WordPress themes.
File Size 9.85 KB
Installation Count 13
Current Version 1.0.1
Last Updated 2017-02-02
Publish Date 2017-02-02
Developer Joseph Fusco
Email [email protected]
Payment Type free
Extension Website https://github.com/josephfusco/theme-style-query-string-viewer
Supported Languages 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"
    }
}