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": "RH Tax Lots Coach",
"version": "0.3.1",
"description": "See your Robinhood portfolio split into long-term vs short-term lots (local-only, read-only).",
"action": {
"default_popup": "popup.html",
"default_title": "RH Tax Lots Coach"
},
"permissions": [
"storage",
"unlimitedStorage",
"activeTab"
],
"host_permissions": [
"https:\/\/robinhood.com\/*",
"https:\/\/api.robinhood.com\/*"
],
"background": {
"service_worker": "sw.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/robinhood.com\/*"
],
"js": [
"capturetoken.js"
],
"run_at": "document_end"
}
]
}