Reviews & Approvals for Teamwork - custom domains - Developed by Certified Teamwork Partner
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",
"name": "TaskReviewer (Custom Domain) for Teamwork",
"author": "CVC Web Solutions",
"version": "2.0.2",
"manifest_version": 3,
"description": "Reviews & Approvals for Teamwork - custom domains - Developed by Certified Teamwork Partner",
"homepage_url": "https://taskreviewer.com",
"icons": {
"16": "icons/logo-16x16.png",
"24": "icons/logo-24x24.png",
"32": "icons/logo-32x32.png",
"48": "icons/logo-48x48.png",
"64": "icons/logo-64x64.png",
"128": "icons/logo-128x128.png"
},
"permissions": [
"identity",
"storage",
"tabs",
"activeTab",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "icons/logo-19x19.png",
"default_title": "Task Reviewer",
"default_popup": "src/browser_action/prod.html"
},
"options_page": "src/browser_action/options.html",
"content_scripts": [
{
"matches": [
"https://*.teamwork.com/*",
"<all_urls>"
],
"all_frames": true,
"css": [],
"js": [
"src/contentscript/contentscript.min.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"src/inject/dependencies.js",
"src/inject/templates.html",
"src/bg/custom-domain.html",
"src/inject/inject.js",
"src/css/inject.min.css",
"images/add-user.png"
],
"matches": [
"<all_urls>"
]
}
]
}