Remove unwanted elements

Remove unwanted elements from the page

Τι είναι το Remove unwanted elements;

Το Remove unwanted elements είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον psoft123, και η κύρια λειτουργία του είναι "Remove unwanted elements from the page".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Remove unwanted elements

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

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

                        Helps in removing the unwanted elements from the page with ease in just few clicks.

Can remove any content from the page without changing the layout structure.

So now, say bye to distracting contents on pages be it flashy content, advertising banners or some other distracting elements (:p) and just focus on the section that you want to concentrate on.

Undo of Remove Elements can be done for last 5 removed elements.

Simply click the extension icon (or press Ctrl+Shift+F) to enable it, and click the element you want to erase;  To Undo the removal just click Undo button.
It's that simple. Enjoy.

For any feedback, do leave comment.

#removeElement #removeDistraction                    

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

Όνομα Remove unwanted elements Remove unwanted elements
ID ipgipojdkhnfpgmfifkbhhdfgccggpld
Επίσημο URL https://chromewebstore.google.com/detail/remove-unwanted-elements/ipgipojdkhnfpgmfifkbhhdfgccggpld
Περιγραφή Remove unwanted elements from the page
Μέγεθος Αρχείου 6.39 KB
Αριθμός Εγκαταστάσεων 69
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2024-01-21
Ημερομηνία Δημοσίευσης 2022-06-14
Αξιολόγηση 1.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής psoft123
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove unwanted elements",
    "description": "Remove unwanted elements from the page",
    "version": "1.0",
    "manifest_version": 3,
    "icons": {
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_title": "Click to remove elements"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Opens Remove unwanted Elements extension"
        }
    }
}