Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Discord Web Quest Completer",
"version": "1.2",
"description": "Complete Discord Quests in the browser in one click without any manual work",
"permissions": [
"declarativeNetRequestWithHostAccess",
"scripting",
"activeTab"
],
"host_permissions": [
"https:\/\/discord.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/discord.com\/quest-home*"
],
"js": [
"quest-home.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/discord.com\/*"
],
"js": [
"user-agent-check.js"
],
"run_at": "document_start",
"all_frames": false
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
}
}