Teamlock Chrome Extension
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Teamlock",
"description": "Teamlock Chrome Extension",
"version": "0.0.5",
"manifest_version": 3,
"icons": {
"16": "icons/icon-16x16.png",
"48": "icons/icon-48x48.png",
"128": "icons/icon-128x128.png"
},
"permissions": [
"storage",
"tabs",
"webRequest"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"action": {
"default_title": "Teamlock",
"default_popup": "www/index.html#/popup"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content-script.js"
],
"css": [
"assets/css/content-css.css"
],
"run_at": "document_end"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"web_accessible_resources": [
{
"resources": [
"*"
],
"matches": [
"*://*/*"
]
}
],
"short_name": "Teamlock",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}