Theme Style Query String Viewer
Quickly view query string versions appended to style.css files within WordPress themes.
Co je Theme Style Query String Viewer?
Theme Style Query String Viewer je rozšíření Chrome vyvinuté Joseph Fusco, a jeho hlavní funkcí je „Quickly view query string versions appended to style.css files within WordPress themes.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Theme Style Query String Viewer
Stáhněte si soubory rozšíření Theme Style Query String Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Chrome extension to help quickly identify the WordPress theme version query strings.
Základní Informace o Rozšíření
Název | Theme Style Query String Viewer |
ID | dackloklmagidklapkiefoeljpaogopf |
Oficiální URL | https://chromewebstore.google.com/detail/theme-style-query-string/dackloklmagidklapkiefoeljpaogopf |
Popis | Quickly view query string versions appended to style.css files within WordPress themes. |
Velikost souboru | 9.85 KB |
Počet instalací | 13 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2017-02-02 |
Datum Vydání | 2017-02-02 |
Vývojář | Joseph Fusco |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/josephfusco/theme-style-query-string-viewer |
Podporované Jazyky | 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" } } |