Theme Style Query String Viewer
Quickly view query string versions appended to style.css files within WordPress themes.
Cos'è Theme Style Query String Viewer?
Theme Style Query String Viewer è un'estensione di Chrome sviluppata da Joseph Fusco, e la sua funzione principale è "Quickly view query string versions appended to style.css files within WordPress themes.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Theme Style Query String Viewer
Scarica i file di estensione Theme Style Query String Viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Chrome extension to help quickly identify the WordPress theme version query strings.
Informazioni di Base sull'Estensione
Nome | Theme Style Query String Viewer |
ID | dackloklmagidklapkiefoeljpaogopf |
URL Ufficiale | https://chromewebstore.google.com/detail/theme-style-query-string/dackloklmagidklapkiefoeljpaogopf |
Descrizione | Quickly view query string versions appended to style.css files within WordPress themes. |
Dimensione del File | 9.85 KB |
Conteggio Installazioni | 13 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2017-02-02 |
Data di Pubblicazione | 2017-02-02 |
Sviluppatore | Joseph Fusco |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/josephfusco/theme-style-query-string-viewer |
Lingue Supportate | 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" } } |