Scavenger Hunt
A simple scavenger hunt extension based on URLs
Scavenger Hunt क्या है?
Scavenger Hunt Scav Hunt Extension द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple scavenger hunt extension based on URLs"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Scavenger Hunt एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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": [ "*:\/\/*\/*" ] } ] } |