CleanUp Social Media Ads

Clean up your social feed by getting rid of ads, recommendations and more

Τι είναι το CleanUp Social Media Ads;

Το CleanUp Social Media Ads είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://5diraptor.com, και η κύρια λειτουργία του είναι "Clean up your social feed by getting rid of ads, recommendations and more".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης CleanUp Social Media Ads

Λήψη αρχείων επέκτασης CleanUp Social Media Ads σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Do you want to stop seeing so many ads and other clutter on your social media feed?  I built this extension because I wanted to get rid of all the rubbish in my feeds.  Here's a few things you can choose to remove from your feed:
 - Remove ads or "Promoted" posts
 - Remove "Events recommended for you" notifications
 - Remove "Add to your feed" or "You may also be interested in" suggestions
 - Remove "Fresh Perspectives"
 - Remove "Jobs recommended for you"

You can also choose to clean your entire feed, leaving you with a blank space to give you room to breathe.  An in-feed reminder will also remind you that the extension is running.

All of the above are options, and you can block or unblock these options at any time, depending on what you want to see.

Click on the extensions toolbar to open the options popup.   Here, you can simply tick anything you don't want to see, load (or reload) the page and start enjoying a clean, relevant feed without ads and annoyances.

This plugin is fast and easy to use.  It's also open source and the code is available to view here:  https://github.com/5Diraptor/CleanUp-Social-Chrome-Extension

Enjoy :)  Please like or share if this has been useful!  I don't get anything but I'll be happy to have helped!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα CleanUp Social Media Ads CleanUp Social Media Ads
ID jpnappbebbldpfefhgfphjpjfcdkonac
Επίσημο URL https://chrome.google.com/webstore/detail/cleanup-social-media-ads/jpnappbebbldpfefhgfphjpjfcdkonac
Περιγραφή Clean up your social feed by getting rid of ads, recommendations and more
Μέγεθος Αρχείου 118 KB
Αριθμός Εγκαταστάσεων 51
Τρέχουσα Έκδοση 3.0.5
Τελευταία Ενημέρωση 2023-06-21
Ημερομηνία Δημοσίευσης 2021-11-05
Αξιολόγηση 2.75/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://5diraptor.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://5diraptor.com/toolkit/cleanup-social-chrome-extension/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/5Diraptor/Li_CleanUp
URL της Σελίδας Πολιτικής Απορρήτου https://5diraptor.com/toolkit/chrome-plugin-privacy-policy
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CleanUp Social Media Ads",
    "description": "Clean up your social feed by getting rid of ads, recommendations and more",
    "version": "3.0.5",
    "manifest_version": 3,
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ],
            "js": [
                "autorun.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/assets\/logo16.png",
            "32": "\/assets\/logo32.png",
            "48": "\/assets\/logo48.png",
            "128": "\/assets\/logo128.png"
        }
    },
    "icons": {
        "16": "\/assets\/logo16.png",
        "32": "\/assets\/logo32.png",
        "48": "\/assets\/logo48.png",
        "128": "\/assets\/logo128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*",
                "style\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}