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,
"name": "HR Assistant",
"description": "Scrapes user data from LinkedIn\/Twitter\/Upwork",
"version": "1.2",
"options_page": "options.html",
"action": {
"default_icon": {
"16": "assets\/icon.png",
"24": "assets\/icon.png",
"32": "assets\/icon.png"
}
},
"icons": {
"16": "assets\/icon.png",
"48": "assets\/icon.png",
"128": "assets\/icon.png"
},
"side_panel": {
"default_path": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.linkedin.com\/in\/*",
"*:\/\/twitter.com\/*",
"*:\/\/*.upwork.com\/freelancers\/*"
],
"js": [
"js\/vendor.js",
"js\/content_script.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "js\/background.js"
},
"permissions": [
"tabs",
"sidePanel",
"scripting",
"storage",
"unlimitedStorage",
"activeTab"
],
"host_permissions": [
"https:\/\/*.linkedin.com\/*",
"https:\/\/*.upwork.com\/freelancers\/*",
"https:\/\/twitter.com\/*",
"https:\/\/6bs2pvpu3f.execute-api.us-west-2.amazonaws.com\/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}