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": "PaperKnight Trading Bot",
"version": "1.0.1",
"description": "A paper trading bot for TradingView, axiom.trade, and gmgn.ai charts",
"permissions": [
"storage",
"windows"
],
"host_permissions": [
"*:\/\/*.tradingview.com\/*",
"*:\/\/*.axiom.trade\/*",
"*:\/\/*.gmgn.ai\/*",
"https:\/\/extensionpay.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "pklogo.png"
},
"web_accessible_resources": [
{
"resources": [
"icon01.png",
"pklogo.png",
"sublogo1.png",
"subknight.png"
],
"matches": [
"*:\/\/*.tradingview.com\/*",
"*:\/\/*.axiom.trade\/*",
"*:\/\/*.gmgn.ai\/*",
"https:\/\/chromewebstore.google.com\/*"
]
}
],
"content_scripts": [
{
"matches": [
"*:\/\/*.tradingview.com\/*",
"*:\/\/*.axiom.trade\/*",
"*:\/\/*.axiom.trade\/discover*",
"*:\/\/*.gmgn.ai\/*",
"https:\/\/chromewebstore.google.com\/*"
],
"js": [
"ExtPay.js",
"PaperKnight.js"
],
"run_at": "document_end",
"all_frames": false
},
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"ExtPay.js"
],
"run_at": "document_start"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}