Custom Stylesheet & Script

Inserts a custom stylesheet and script into every web page.

Custom Stylesheet & Scriptとは何ですか?

Custom Stylesheet & Scriptはhttps://rufflewind.comによって開発されたChromeの拡張機能で、その主な機能は「Inserts a custom stylesheet and script into every web page.」です。

拡張機能のスクリーンショット

screenshot

Custom Stylesheet & Script拡張機能のCRXファイルをダウンロード

Custom Stylesheet & Script拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Custom Stylesheet & Script Custom Stylesheet & Script
ID hojkciooaohipljgobfikbkjcehockld
公式URL https://chromewebstore.google.com/detail/custom-stylesheet-script/hojkciooaohipljgobfikbkjcehockld
説明 Inserts a custom stylesheet and script into every web page.
ファイルサイズ 13.94 KB
インストール数 833
現在のバージョン 2.1.0
最終更新日 2019-07-16
公開日 2019-07-15
評価 3.57/5 合計 14 レビュー
開発者 https://rufflewind.com
支払い方法 free
拡張機能のウェブサイト https://github.com/Rufflewind/chrome_script
ヘルプページのURL https://github.com/Rufflewind/chrome_script/issues
対応言語 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"
        }
    }
}