Scavenger Hunt

A simple scavenger hunt extension based on URLs

Scavenger Hunt란 무엇입니까?

Scavenger Hunt은(는) Scav Hunt Extension에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple scavenger hunt extension based on URLs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Scavenger Hunt 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A simple scavenger hunt extension based on URLs. Create a clue set and share with your friends!

After installing, pin the extension and click on the icon. Then, choose a hunt, submit, and begin!

Solve the 3 pre-installed tutorial scavenger hunts, or make your own!

Navigate from URL to URL and clue to clue as you complete the hunt!

Tutorial: https://youtu.be/O9CKn3I73Oc                    

확장 프로그램 기본 정보

이름 Scavenger Hunt Scavenger Hunt
ID opcgbolmjikeaokbmldpfhemaamnfggf
공식 URL https://chromewebstore.google.com/detail/scavenger-hunt/opcgbolmjikeaokbmldpfhemaamnfggf
설명 A simple scavenger hunt extension based on URLs
파일 크기 4.79 MB
설치 횟수 27
현재 버전 1.0.0
최근 업데이트 2023-10-20
출시 날짜 2020-10-14
평점 5.00/5 총 1 개의 평점
개발자 Scav Hunt Extension
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/TylerJang27/Scav_Hunt_Extension
도움말 페이지 URL https://youtu.be/O9CKn3I73Oc
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scavenger Hunt",
    "description": "A simple scavenger hunt extension based on URLs",
    "version": "1.0.0",
    "manifest_version": 3,
    "options_ui": {
        "page": "landing_page.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "graphics\/scav16.png",
        "48": "graphics\/scav48.png",
        "128": "graphics\/scav128.png"
    },
    "minimum_chrome_version": "88",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https:\/\/www.youtube.com\/iframe_api;",
        "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval' https:\/\/www.youtube.com\/iframe_api; child-src 'self';"
    },
    "action": {
        "default_title": "Scavenger Hunt",
        "default_icon": "graphics\/scav.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "downloads"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "res\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}