Scavenger Hunt

A simple scavenger hunt extension based on URLs

O que é Scavenger Hunt?

Scavenger Hunt é uma extensão do Chrome desenvolvida por Scav Hunt Extension, e sua principal característica é "A simple scavenger hunt extension based on URLs".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Scavenger Hunt

Baixe arquivos de extensão Scavenger Hunt no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Scavenger Hunt Scavenger Hunt
ID opcgbolmjikeaokbmldpfhemaamnfggf
URL Oficial https://chromewebstore.google.com/detail/scavenger-hunt/opcgbolmjikeaokbmldpfhemaamnfggf
Descrição A simple scavenger hunt extension based on URLs
Tamanho do Arquivo 4.79 MB
Contagem de Instalações 27
Versão Atual 1.0.0
Última Atualização 2023-10-20
Data de Publicação 2020-10-14
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Scav Hunt Extension
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/TylerJang27/Scav_Hunt_Extension
URL da Página de Ajuda https://youtu.be/O9CKn3I73Oc
Idiomas Suportados 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}