LinkedIn Adblock
Block ads and sponsored posts from your LinkedIn feed
What is LinkedIn Adblock?
LinkedIn Adblock is a Chrome extension developed by elhardoum, and its main feature is "Block ads and sponsored posts from your LinkedIn feed".
Extension Screenshots
Download LinkedIn Adblock Extension CRX File
Download LinkedIn Adblock extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension once activated will prevent ads and promoted posts from showing up in your LinkedIn activity feed
Extension Basic Information
Name | LinkedIn Adblock |
ID | pjapieknidbidbocbkodfoadjifpojpi |
Official URL | https://chrome.google.com/webstore/detail/linkedin-adblock/pjapieknidbidbocbkodfoadjifpojpi |
Description | Block ads and sponsored posts from your LinkedIn feed |
File Size | 18.46 KB |
Installation Count | 150 |
Current Version | 0.2.2 |
Last Updated | 2022-12-14 |
Publish Date | 2022-07-14 |
Rating | 5.00/5 Total 3 Ratings |
Developer | elhardoum |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LinkedIn Adblock", "short_name": "LinkedIn Adblock", "description": "Block ads and sponsored posts from your LinkedIn feed", "version": "0.2.2", "icons": { "96": ".\/src\/assets\/icon.png" }, "action": { "default_icon": { "96": ".\/src\/assets\/icon.png" }, "default_popup": ".\/src\/popup\/index.html" }, "content_scripts": [ { "all_frames": true, "js": [ ".\/src\/content\/inject.js" ], "matches": [ "https:\/\/www.linkedin.com\/*" ], "run_at": "document_start" } ], "permissions": [], "host_permissions": [ "https:\/\/www.linkedin.com\/*" ], "manifest_version": 3, "web_accessible_resources": [ { "resources": [ "src\/content\/index.js" ], "matches": [ "https:\/\/www.linkedin.com\/*" ], "extension_ids": [] } ] } |