Inspect and view changes in RightTool for QuickBooks Online source codes across current and past versions
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": "RightTool for QuickBooks Online",
"description": "RightTool increases your productivity with QuickBooks Online. Designed by Hector Garcia CPA, not associated with Intuit, Inc.",
"version": "1.032.4",
"options_page": "options.html",
"icons": {
"32": "images/favicon-large.png",
"128": "images/favicon-small.png"
},
"permissions": [
"declarativeContent",
"storage",
"scripting",
"tabs",
"activeTab",
"contextMenus"
],
"background": {
"service_worker": "background.js"
},
"commands": {
"do_nothing": {
"description": "Do nothing"
}
},
"content_scripts": [
{
"matches": [
"https://app.qbo.intuit.com/*",
"https://qbo.intuit.com/*"
],
"css": [
"css/sidebar.min.css",
"css/drawerSize.min.css"
],
"run_at": "document_idle",
"js": [
"js/ptmain.min.js",
"js/closeTab.js"
]
},
{
"matches": [
"https://righttoolpro.com/*"
],
"js": [
"js/rtLogin.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"32": "images/favicon-large.png",
"128": "images/favicon-small.png"
}
},
"host_permissions": [
"https://app.qbo.intuit.com/*",
"https://qbo.intuit.com/*",
"https://accounts.intuit.com/*",
"https://righttoolpro.com/*"
],
"optional_host_permissions": [
"https://localhost:44490/"
],
"web_accessible_resources": [
{
"resources": [
"html/*",
"json/*",
"qbjs/*",
"css/*",
"images/*"
],
"matches": [
"<all_urls>"
]
}
]
}