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:\/\/*\/"
    ]
}