Easter Eggstension
Help Mr. and Mrs. Bunny save Easter!
什麼是Easter Eggstension?
Easter Eggstension是由andreas.k.dev開發的Chrome擴展程式,該擴展的主要功能是“Help Mr. and Mrs. Bunny save Easter!”。
擴展截圖
下載Easter Eggstension擴展crx文件
下載Easter Eggstension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
It's Easter time, and Mr. and Mrs. Bunny are busier than ever! Scrambling to reach every garden across the globe to spread the Easter joy, some eggs are bound to fall out of their baskets, as they dash through fiber cables deep underground, handing out eggs to people all around (few people know this is actually their preferred method of transportation; it is fast and also avoids them getting held up at customs). Indeed, some of these eggs have even ended up scattered across random websites on the internet! Now it falls to you to find and gather these eggs, to help Mr. and Mrs. Bunny as Easter draws near. Who knows; you might even find the ever-illusive... Dragon Egg? ####### Questions ####### Q: Why are you doing this? A: It's a school assignment, and one of the grading criteria is to include easter eggs. Q: Easter is already over :( A: Maybe so, but there are still plenty of eggs left to be found! Q: How many egg-puns can you fit into an eggstension? A: Yes.
擴展基本資訊
名稱 | Easter Eggstension |
ID | lkeplkoegchdobbdodnocghcikijbnfm |
官方網址 | https://chromewebstore.google.com/detail/easter-eggstension/lkeplkoegchdobbdodnocghcikijbnfm |
簡介 | Help Mr. and Mrs. Bunny save Easter! |
檔案大小 | 104 KB |
安裝次數 | 227 |
目前版本 | 0.0.3 |
更新時間 | 2021-05-11 |
上架時間 | 2021-04-04 |
評分 | 4.00/5 共 2 次評分 |
開發者 | andreas.k.dev |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Easter Eggstension", "description": "Help Mr. and Mrs. Bunny save Easter!", "version": "0.0.3", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/logos\/logo16.png", "32": "\/images\/logos\/logo32.png", "48": "\/images\/logos\/logo48.png", "128": "\/images\/logos\/logo128.png" } }, "icons": { "16": "\/images\/logos\/logo16.png", "32": "\/images\/logos\/logo32.png", "48": "\/images\/logos\/logo48.png", "128": "\/images\/logos\/logo128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_idle", "js": [ "egg.js" ] } ], "web_accessible_resources": [ { "resources": [ "images\/eggs\/*.png" ], "matches": [ "*:\/\/*\/*" ] } ] } |