Inspect and view changes in Viterbit Sourcing Extension 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": "Viterbit Sourcing Extension",
"description": "Con la extensión de Sourcing de Viterbit podrás añadir candidatos en tu base de datos desde cualquier lugar.",
"version": "2.3.5",
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "assets/icons/icon16.png",
"48": "assets/icons/icon48.png",
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"*://www.linkedin.com/*"
],
"js": [
"js/vendor.js",
"js/content_script.js"
]
}
],
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"activeTab"
],
"host_permissions": [
"*://*.linkedin.com/*",
"*://*.viterbit.com/*"
]
}