Snow

Snowing in the browser

Snowとは何ですか?

Snowはkrisztiansalaによって開発されたChromeの拡張機能で、その主な機能は「Snowing in the browser」です。

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

screenshot
screenshot
screenshot
screenshot

Snow拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Creates snowing effect on any website.
You can control the amount of snowflakes, speed, mouse interaction and also the color.
Get a holiday feeling at any time of the year with this relaxing snowfall.
Warning! Too many snowflakes or high speed may cause your browser to slow down, so don't 
try the maximum amount at first.                    

拡張機能の基本情報

名前 Snow Snow
ID oeehhbpmpalolbhkffflikcnfeeflmek
公式URL https://chrome.google.com/webstore/detail/snow/oeehhbpmpalolbhkffflikcnfeeflmek
説明 Snowing in the browser
ファイルサイズ 31.85 KB
インストール数 273
現在のバージョン 0.8.0
最終更新日 2020-02-07
公開日 2020-02-07
評価 5.00/5 合計 1 レビュー
開発者 krisztiansala
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Snow",
    "description": "Snowing in the browser",
    "version": "0.8.0",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "snow-16.png",
            "32": "snow-32.png",
            "48": "snow-48.png",
            "128": "snow-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "snow.js"
            ]
        }
    ],
    "icons": {
        "16": "snow-16.png",
        "32": "snow-32.png",
        "48": "snow-48.png",
        "128": "snow-128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}