Easter Eggstension

Help Mr. and Mrs. Bunny save Easter!

Easter Eggstension란 무엇입니까?

Easter Eggstension은(는) andreas.k.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Help Mr. and Mrs. Bunny save Easter!"입니다.

확장 프로그램 스크린샷

screenshot

Easter Eggstension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Easter Eggstension
ID lkeplkoegchdobbdodnocghcikijbnfm
공식 URL 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}