Theme Style Query String Viewer

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

O que é Theme Style Query String Viewer?

Theme Style Query String Viewer é uma extensão do Chrome desenvolvida por Joseph Fusco, e sua principal característica é "Quickly view query string versions appended to style.css files within WordPress themes.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Theme Style Query String Viewer

Baixe arquivos de extensão Theme Style Query String Viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Theme Style Query String Viewer Theme Style Query String Viewer
ID dackloklmagidklapkiefoeljpaogopf
URL Oficial https://chromewebstore.google.com/detail/theme-style-query-string/dackloklmagidklapkiefoeljpaogopf
Descrição Quickly view query string versions appended to style.css files within WordPress themes.
Tamanho do Arquivo 9.85 KB
Contagem de Instalações 13
Versão Atual 1.0.1
Última Atualização 2017-02-02
Data de Publicação 2017-02-02
Desenvolvedor Joseph Fusco
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/josephfusco/theme-style-query-string-viewer
Idiomas Suportados 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"
    }
}