Inspect and view changes in PromoFilter LinkedIn Assistant by Grapdna 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
{
"manifest_version": 3,
"name": "PromoFilter LinkedIn Assistant by Grapdna",
"version": "1.0.0",
"description": "Enhance your job search on LinkedIn by hiding promoted listings, ensuring a more relevant and streamlined experience.",
"permissions": [
"storage"
],
"host_permissions": [
"https://www.linkedin.com/jobs/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"48": "icon.png",
"128": "icon.png"
}
},
"icons": {
"48": "icon.png",
"128": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://www.linkedin.com/jobs/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}