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”。
扩展截图
下载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 扩展基本信息
| 名称 | |
| 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": [
"*:\/\/*\/*"
]
}
]
} | |