Snow Pig

It's raining pigs, Hallelujah !

Snow Pigとは何ですか?

Snow PigはHonch 🐷によって開発されたChromeの拡張機能で、その主な機能は「It's raining pigs, Hallelujah !」です。

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

screenshot

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

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

拡張機能の使用方法

                        It's raining pigs, Hallelujah !
Winter is coming, but there are only pigs.

This extensions will display a "snow pig" (pig falling everywhere in every direction) on every web pages you visit. You can look at the screenshot to see how pigs are displayed.

This extensions needs host_permissions "*://*/*" (it means "every website") to include a CSS and JS script that will display the "snow pig". This extensions does not need any other permission.

The "snow pig" is rendered in full CSS, we use JS only to inject html emojies in the current web page, and then animate them with CSS (thanks to https://github.com/Artimon/pure-css-snowfall).

If you have any concern or question about the extension, please leave a comment, we'll be happy to answer.                    

拡張機能の基本情報

名前 Snow Pig Snow Pig
ID knchbmnjngcmadffioojkkhlipecjekp
公式URL https://chromewebstore.google.com/detail/snow-pig/knchbmnjngcmadffioojkkhlipecjekp
説明 It's raining pigs, Hallelujah !
ファイルサイズ 3.27 MB
インストール数 14
現在のバージョン 0.1.0
最終更新日 2022-02-04
公開日 2022-02-04
開発者 Honch 🐷
Eメール [email protected]
支払い方法 free
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Snow Pig",
    "version": "0.1.0",
    "description": "It's raining pigs, Hallelujah !",
    "permissions": [],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "src\/onload.js"
            ],
            "css": [
                "src\/snowfall.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "src\/head.png"
    }
}