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,
"author": "John Robert B. Guazon",
"name": "Arbitrage Calculator",
"version": "1.0",
"icons": {
"16": "images\/icon_16.png",
"32": "images\/icon_32.png",
"48": "images\/icon_48.png",
"64": "images\/icon_64.png",
"128": "images\/icon_128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"utils\/ExtPay.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage"
],
"action": {
"default_icon": {
"16": "images\/icon_16.png",
"32": "images\/icon_32.png",
"48": "images\/icon_48.png",
"64": "images\/icon_64.png",
"128": "images\/icon_128.png"
},
"default_title": "Arbitrage Calculator",
"default_popup": "popup\/assistant.html"
},
"options_page": "options\/set.html",
"background": {
"service_worker": "background\/background.js"
}
}