Social Sponsored Ads Blocker
Removes sponsored / promoted social ads content on Facebook, Twitter, LinkedIn, and Reddit.
Was ist Social Sponsored Ads Blocker?
Social Sponsored Ads Blocker ist eine Chrome-Erweiterung, die von wilbert_abreu entwickelt wurde, und ihr Hauptmerkmal ist "Removes sponsored / promoted social ads content on Facebook, Twitter, LinkedIn, and Reddit.".
Erweiterungsscreenshots
Social Sponsored Ads Blocker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Social Sponsored Ads Blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
We're all the product and the user on these social platforms, so this chrome extension aims to dynamically remove all "sponsored" / "promoted" posts / ads from Twitter, Facebook, LinkedIn, and Reddit. Let's take some power back. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cefgndhbngdogmalpnhnidnnlkmbicig |
| Offizielle URL | https://chromewebstore.google.com/detail/social-sponsored-ads-bloc/cefgndhbngdogmalpnhnidnnlkmbicig |
| Beschreibung | Removes sponsored / promoted social ads content on Facebook, Twitter, LinkedIn, and Reddit. |
| Dateigröße | 53.16 KB |
| Installationsanzahl | 330 |
| Aktuelle Version | 4.0.10 |
| Letztes Update | 2021-12-05 |
| Veröffentlichungsdatum | 2019-12-27 |
| Bewertung | 4.14/5 Insgesamt 7 Bewertungen |
| Entwickler | wilbert_abreu |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Social Sponsored Ads Blocker",
"description": "Removes sponsored \/ promoted social ads content on Facebook, Twitter, LinkedIn, and Reddit.",
"version": "4.0.10",
"browser_action": {
"default_icon": "icon.png",
"default_popup": ""
},
"content_scripts": [
{
"matches": [
"https:\/\/www.facebook.com\/*",
"https:\/\/twitter.com\/*",
"https:\/\/www.reddit.com\/*",
"https:\/\/www.linkedin.com\/*"
],
"js": [
"removeSponsoredPosts.js"
]
}
],
"background": {
"service_worker": "background.js"
}
} | |