Theme Style Query String Viewer

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

Theme Style Query String Viewer là gì?

Theme Style Query String Viewer là một tiện ích mở rộng Chrome được phát triển bởi Joseph Fusco, và tính năng chính của nó là "Quickly view query string versions appended to style.css files within WordPress themes.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Theme Style Query String Viewer

Tải xuống các tệp mở rộng Theme Style Query String Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Theme Style Query String Viewer Theme Style Query String Viewer
ID dackloklmagidklapkiefoeljpaogopf
URL Chính Thức https://chromewebstore.google.com/detail/theme-style-query-string/dackloklmagidklapkiefoeljpaogopf
Mô tả Quickly view query string versions appended to style.css files within WordPress themes.
Kích Thước Tệp 9.85 KB
Số Lần Cài Đặt 13
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2017-02-02
Ngày Phát Hành 2017-02-02
Nhà Phát Triển Joseph Fusco
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/josephfusco/theme-style-query-string-viewer
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}