Remove unwanted elements

Remove unwanted elements from the page

Remove unwanted elements क्या है?

Remove unwanted elements psoft123 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove unwanted elements from the page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Remove unwanted elements एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        }
    }
}