Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extension_name__",
"version": "0.1.4",
"description": "__MSG_extension_description__",
"permissions": [
"storage",
"i18n",
"web_accessible_resources",
"contextMenus",
"tabs",
"clipboardRead"
],
"minimum_chrome_version": "120",
"background": {
"service_worker": "src\/pages\/background\/index.js",
"type": "module"
},
"action": {
"default_popup": "src\/pages\/popup\/index.html",
"default_icon": "icon-48.png"
},
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"host_permissions": [
"https:\/\/*.linkedin.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.linkedin.com\/*",
"https:\/\/*.elang.app\/*",
"https:\/\/edu-elang-app-development-gm4e3.ondigitalocean.app\/*"
],
"js": [
"src\/pages\/content\/index.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'wasm-unsafe-eval' 'unsafe-eval'; child-src 'self';"
},
"web_accessible_resources": [
{
"resources": [
"assets\/js\/*.js",
"assets\/css\/*.css",
"icon-128.png",
"icon-48.png",
"icon-16.png",
"src\/pages\/newtab\/index.html"
],
"matches": [
"*:\/\/*\/*"
]
}
]
}