AddCSS

This extension allows you to add your own custom website specific CSS style sheets.

AddCSS là gì?

AddCSS là một tiện ích mở rộng Chrome được phát triển bởi http://mkhsoft.eu, và tính năng chính của nó là "This extension allows you to add your own custom website specific CSS style sheets.".

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

screenshot
screenshot

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

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

                        AddCSS is a neat extension that lets you add your own custom domain specific CSS code to web pages

Your custom code is even synchronised between your Chrome browsers in different machines.                    

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

Tên AddCSS AddCSS
ID ndddnaffbgingffgfneijoplfpeohabn
URL Chính Thức https://chrome.google.com/webstore/detail/addcss/ndddnaffbgingffgfneijoplfpeohabn
Mô tả This extension allows you to add your own custom website specific CSS style sheets.
Kích Thước Tệp 676 KB
Số Lần Cài Đặt 252
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-01-20
Ngày Phát Hành 2017-01-20
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển http://mkhsoft.eu
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AddCSS",
    "description": "This extension allows you to add your own custom website specific CSS style sheets.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon64.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "logic.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}