This extension keeps an eye on your stock prices and it will notify you whenever the app crosses your trigger price.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "StockEye",
"description": "This extension keeps an eye on your stock prices and it will notify you whenever the app crosses your trigger price.",
"version": "3.09",
"options_page": "options.html",
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "Stock Eye"
},
"background": {
"service_worker": "service-worker.js"
},
"content_scripts": [
{
"matches": [
"https://extensionpay.com/*"
],
"js": [
"ExtPay.js"
],
"run_at": "document_start"
},
{
"matches": [
"http://*/",
"https://*/"
],
"js": [
"ExtPay.js",
"options.js"
]
}
],
"permissions": [
"activeTab",
"storage",
"notifications",
"alarms"
],
"host_permissions": [
"https://ajax.googleapis.com/",
"https://matches-stockeye-new.azurewebsites.net/"
],
"content_security_policy": {
"extension_pages": "default-src 'wasm-unsafe-eval'; script-src 'self'; connect-src https://matches-stockeye-new.azurewebsites.net https://extensionpay.com"
}
}