Snow Pig

It's raining pigs, Hallelujah !

Snow Pig là gì?

Snow Pig là một tiện ích mở rộng Chrome được phát triển bởi Honch 🐷, và tính năng chính của nó là "It's raining pigs, Hallelujah !".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Snow Pig

Tải xuống các tệp mở rộng Snow Pig dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Snow Pig Snow Pig
ID knchbmnjngcmadffioojkkhlipecjekp
URL Chính Thức https://chromewebstore.google.com/detail/snow-pig/knchbmnjngcmadffioojkkhlipecjekp
Mô tả It's raining pigs, Hallelujah !
Kích Thước Tệp 3.27 MB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2022-02-04
Ngày Phát Hành 2022-02-04
Nhà Phát Triển Honch 🐷
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}