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ファイルをダウンロード

Scavenger Hunt拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}