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": "ORTEX Enhancer",
"version": "1.3",
"description": "Enhances ORTEX financial platform with improved interface and optimized user experience",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/app.ortex.com\/*"
],
"js": [
"content.js"
],
"css": [
"darkmode.css"
],
"run_at": "document_end"
},
{
"matches": [
"*:\/\/www.eoddata.com\/stockquote\/*"
],
"js": [
"eoddata.js"
]
},
{
"matches": [
"*:\/\/chartexchange.com\/symbol\/*\/optionchain\/*"
],
"js": [
"chartexchange.js"
],
"run_at": "document_end"
},
{
"matches": [
"*:\/\/chartexchange.com\/*"
],
"exclude_matches": [
"*:\/\/chartexchange.com\/*\/dark-pool*",
"*:\/\/chartexchange.com\/*\/exchange-volume*",
"*:\/\/chartexchange.com\/symbol\/*\/optionchain\/*"
],
"js": [
"chartexchange.js"
]
},
{
"matches": [
"*:\/\/chartexchange.com\/*\/dark-pool*",
"*:\/\/chartexchange.com\/*\/exchange-volume*"
],
"js": [
"darkpool.js"
],
"run_at": "document_start"
}
],
"side_panel": {
"default_path": "sidepanel.html"
},
"permissions": [
"storage",
"activeTab",
"tabs",
"sidePanel"
],
"host_permissions": [
"*:\/\/app.ortex.com\/*",
"*:\/\/www.eoddata.com\/*",
"*:\/\/chartexchange.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"sidepanel.html"
],
"matches": [
"<all_urls>"
]
}
]
}