Scavenger Hunt

A simple scavenger hunt extension based on URLs

Scavenger Hunt là gì?

Scavenger Hunt là một tiện ích mở rộng Chrome được phát triển bởi Scav Hunt Extension, và tính năng chính của nó là "A simple scavenger hunt extension based on URLs".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Scavenger Hunt

Tải xuống các tệp mở rộng Scavenger Hunt dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Scavenger Hunt Scavenger Hunt
ID opcgbolmjikeaokbmldpfhemaamnfggf
URL Chính Thức https://chromewebstore.google.com/detail/scavenger-hunt/opcgbolmjikeaokbmldpfhemaamnfggf
Mô tả A simple scavenger hunt extension based on URLs
Kích Thước Tệp 4.79 MB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-10-20
Ngày Phát Hành 2020-10-14
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Scav Hunt Extension
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/TylerJang27/Scav_Hunt_Extension
URL Trang Trợ Giúp https://youtu.be/O9CKn3I73Oc
Ngôn Ngữ Được Hỗ Trợ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}