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 - это расширение Chrome, разработанное Joseph Fusco, и его основная функция - "Quickly view query string versions appended to style.css files within WordPress themes.".
Снимки экрана расширения
Скачать файл CRX расширения Theme Style Query String Viewer
Скачайте файлы расширений 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 |
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" } } |