mirror of
https://github.com/jcreek/paladins-bounty-marketplace-chrome-extension.git
synced 2026-07-15 12:13:44 +00:00
35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"name": "Paladins Bounty Marketplace Chrome Extension",
|
|
"description": "The marketplace, but with better sorting/searching and UI",
|
|
"version": "1.0",
|
|
"manifest_version": 3,
|
|
"action": {
|
|
"default_popup": "index.html"
|
|
},
|
|
"icons": {
|
|
"16": "currency_bounty_coins_square.png",
|
|
"48": "currency_bounty_coins_square.png",
|
|
"128": "currency_bounty_coins_square.png"
|
|
},
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self'; object-src 'self'",
|
|
"sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
|
|
},
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"permissions": [
|
|
"cookies"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"css": ["jquery.dataTables.min.css", "styles.css"],
|
|
"js": [ "jquery-3.5.1.js", "jquery.dataTables.min.js", "background.js" ],
|
|
"matches": [ "https://bounty.paladins.com/"]
|
|
}],
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": [ "jquery.dataTables.min.css", "images/sort_asc.png", "images/sort_both.png", "images/sort_desc.png" ],
|
|
"matches": [ "https://bounty.paladins.com/*" ]
|
|
}]
|
|
} |