Custom Stylesheet & Script

Inserts a custom stylesheet and script into every web page.

Custom Stylesheet & Script là gì?

Custom Stylesheet & Script là một tiện ích mở rộng Chrome được phát triển bởi https://rufflewind.com, và tính năng chính của nó là "Inserts a custom stylesheet and script into every web page.".

Ả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 Custom Stylesheet & Script

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

                        This is simple extension that inserts custom JavaScript and CSS code into each web page, allowing you to modify the way it behaves and looks.

The default installation does nothing.  You'll have to provide the script and stylesheet yourself.  An example can be found here: https://github.com/Rufflewind/chrome_script/tree/master/example

To edit the script and stylesheet, go to chrome://extensions and click "Options" under "Custom Stylesheet & Script".

The text areas in the "Options" tab will automatically save as you edit.  Existing pages are not affected until refreshed.

Note: jQuery NOT included anymore as of 2.0.0.

Bug reports: https://github.com/Rufflewind/chrome_script/issues

Changelog: https://github.com/Rufflewind/chrome_script/releases                    

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

Tên Custom Stylesheet & Script Custom Stylesheet & Script
ID hojkciooaohipljgobfikbkjcehockld
URL Chính Thức https://chromewebstore.google.com/detail/custom-stylesheet-script/hojkciooaohipljgobfikbkjcehockld
Mô tả Inserts a custom stylesheet and script into every web page.
Kích Thước Tệp 13.94 KB
Số Lần Cài Đặt 833
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2019-07-16
Ngày Phát Hành 2019-07-15
Đánh Giá 3.57/5 Tổng số 14 Đánh Giá
Nhà Phát Triển https://rufflewind.com
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Rufflewind/chrome_script
URL Trang Trợ Giúp https://github.com/Rufflewind/chrome_script/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.1.0",
    "name": "Custom Stylesheet & Script",
    "description": "Inserts a custom stylesheet and script into every web page.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "*:\/\/*\/"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "commands": {
        "options": {
            "description": "Open options"
        }
    }
}