CustomCSS Injector

Write any CSS rules for any websites

CustomCSS Injector là gì?

CustomCSS Injector là một tiện ích mở rộng Chrome được phát triển bởi Bryce, và tính năng chính của nó là "Write any CSS rules for any websites".

Ả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 CustomCSS Injector

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

                        Originally developed as an Add-On for FireFox, Custom CSS Injector lets you write any CSS rules and apply them to any website you like. Change colours, backgrounds, resize and hide obtrusive elements. Anything you can do within the power of CSS!
Simply write the CSS you want to apply in the provided text field and click 'Save' (NO page refresh required!). Apply the CSS to the URL, Domain or Globally by using the radio buttons provided. There is also a whitelist/blacklist functionality to govern which websites you'd like to apply the CSS to.
Enjoy syntax highlighting and line numbers for code readability (Thanks to PrismJS!)                    

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

Tên CustomCSS Injector CustomCSS Injector
ID eknfhefneldkoocaeokkapahblmodika
URL Chính Thức https://chrome.google.com/webstore/detail/customcss-injector/eknfhefneldkoocaeokkapahblmodika
Mô tả Write any CSS rules for any websites
Kích Thước Tệp 37.96 KB
Số Lần Cài Đặt 95
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-03-02
Ngày Phát Hành 2020-03-02
Đánh Giá 2.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Bryce
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CustomCSS Injector",
    "short_name": "CSS Injector",
    "version": "1.0",
    "description": "Write any CSS rules for any websites",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/CCSSI_icon_v2_48.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "",
        "contextMenus",
        "notifications"
    ],
    "browser_action": {
        "browser_style": true,
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "48": "icons\/CCSSI_icon_v2_48.png",
            "96": "icons\/CCSSI_icon_v2_96.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "customcss.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ]
}