Snow Pig
It's raining pigs, Hallelujah !
什麼是Snow Pig?
Snow Pig是由Honch 🐷開發的Chrome擴展程式,該擴展的主要功能是“It's raining pigs, Hallelujah !”。
擴展截圖
下載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 |
ID | knchbmnjngcmadffioojkkhlipecjekp |
官方網址 | 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 🐷 |
電子郵箱 | [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" } } |