Inspect and view changes in Experium ATS 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": "Experium ATS Extension",
"description": "Импортируйте резюме людей в Experium!",
"version": "1.0.2",
"permissions": [
"activeTab",
"storage",
"notifications"
],
"background": {
"service_worker": "src/scripts/background.js",
"type": "module"
},
"options_ui": {
"page": "src/html/options_popup.html",
"open_in_tab": false
},
"action": {
"default_title": "Experium",
"default_popup": "src/html/default_popup.html",
"default_icon": {
"16": "assets/experium.png",
"32": "assets/experium.png",
"48": "assets/experium.png",
"128": "assets/experium128.png"
}
},
"icons": {
"16": "assets/experium.png",
"32": "assets/experium.png",
"48": "assets/experium.png",
"128": "assets/experium128.png"
}
}