AddCSS

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

什么是AddCSS?

AddCSS是由http://mkhsoft.eu开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to add your own custom website specific CSS style sheets.”。

扩展截图

screenshot
screenshot

下载AddCSS扩展crx文件

下载AddCSS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 AddCSS AddCSS
ID ndddnaffbgingffgfneijoplfpeohabn
官方URL https://chrome.google.com/webstore/detail/addcss/ndddnaffbgingffgfneijoplfpeohabn
简介 This extension allows you to add your own custom website specific CSS style sheets.
文件大小 676 KB
安装次数 252
当前版本 1.0
更新时间 2017-01-20
上架时间 2017-01-20
评分 5.00/5 共1次评分
开发者 http://mkhsoft.eu
付费类型 free
支持的语言 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:\/\/*\/"
    ]
}