Restyler

A devtool extension for easy restyling of any webpage

Restyler là gì?

Restyler là một tiện ích mở rộng Chrome được phát triển bởi asimen1, và tính năng chính của nó là "A devtool extension for easy restyling of any webpage".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Restyler

Tải xuống các tệp mở rộng Restyler 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

                        Restyler lets you change the appearance of any webpage with an easy to use interface.
Ongoing changes in the page are automatically observed so new styling is always taken into account.

Perfect for testing out design changes or rebranding on an existing page!

★ Modify any CSS attribute value such as font, color, margins, etc...
★ Apply styling rule to all elements in the page or to a specific set (using selectors).
★ Edit any text content in the page.
★ Share your styling rules as a config or export to CSS.                    

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

Tên Restyler Restyler
ID ofkkcnbmhaodoaehikkibjanliaeffel
URL Chính Thức https://chromewebstore.google.com/detail/restyler/ofkkcnbmhaodoaehikkibjanliaeffel
Mô tả A devtool extension for easy restyling of any webpage
Kích Thước Tệp 1.13 MB
Số Lần Cài Đặt 522
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2019-06-24
Ngày Phát Hành 2019-06-24
Đánh Giá 4.79/5 Tổng số 14 Đánh Giá
Nhà Phát Triển asimen1
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/asimen1/restyler
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Restyler",
    "description": "A devtool extension for easy restyling of any webpage",
    "version": "1.2.1",
    "minimum_chrome_version": "30.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "devtools_page": "html\/devtool\/devtoolLoader.html",
    "background": {
        "scripts": [
            "js\/background\/background.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "stylesheets\/content_scripts\/content_script.css"
            ],
            "js": [
                "js\/content_scripts\/vendor\/jquery-3.1.0.js",
                "js\/content_scripts\/core\/restyler.min.js",
                "js\/content_scripts\/content_script.min.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "",
        "tabs"
    ]
}