Stylite

Quickly customize styling on any website

Stylite là gì?

Stylite là một tiện ích mở rộng Chrome được phát triển bởi Zenture, và tính năng chính của nó là "Quickly customize styling on any website".

Ả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 Stylite

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

                        A super lightweight style editor. Apply any styles you want to any site.

* Click the paint palette icon to bring up the style editor for the current site
* Click outside the editor to save
  * You can also press cmd+enter to save at any time

This extension is free and open source! Check it out: https://github.com/iansinnott/stylite                    

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

Tên Stylite Stylite
ID alghcdmjanomnafjjmmhegabkilpbaea
URL Chính Thức https://chromewebstore.google.com/detail/stylite/alghcdmjanomnafjjmmhegabkilpbaea
Mô tả Quickly customize styling on any website
Kích Thước Tệp 510 KB
Số Lần Cài Đặt 98
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Nhà Phát Triển Zenture
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/iansinnott/stylite
URL Trang Trợ Giúp https://github.com/iansinnott/stylite/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stylite",
    "description": "Quickly customize styling on any website",
    "version": "0.3.0",
    "icons": {
        "128": "icon128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "match_about_blank": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon19x19.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "",
        "storage",
        "unlimitedStorage"
    ]
}