Click to Remove Element

Remove annoying elements with a single click

Click to Remove Element क्या है?

Click to Remove Element https://blade.sk द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove annoying elements with a single click"।

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

screenshot
screenshot
screenshot

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

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

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

                        Allows you to remove any element from a website. Temporarily or permanently. Be it an advertisment missed by your ad-blocker, fixed menu, distracting GIF image, overly animated slideshow or anything else getting in your way.

Features:
- easily remove multiple elements in a row (no need for a cumbersome context menu)
- highlights elements under the cursor
- customizable keyboard shortcut for activation
- remember removed elements for a particular website or hide only temporarily
- works flawlessly with iframes, embeds and ads
- minimal memory and performance footprint
- power user feature - customize CSS selectors

New in v3:
- preview which elements were removed
- use space to remove elements resistant to mouse clicks
- improved CSS selectors
- more resilient UI
- the much requested import/export feature
- undo removed elements (Ctrl+Z / ⌘+Z)
- dark mode                    

एक्सटेंशन की मूल जानकारी

नाम Click to Remove Element Click to Remove Element
ID jcgpghgjhhahcefnfpbncdmhhddedhnk
आधिकारिक URL https://chromewebstore.google.com/detail/click-to-remove-element/jcgpghgjhhahcefnfpbncdmhhddedhnk
विवरण Remove annoying elements with a single click
फ़ाइल का आकार 28.63 KB
स्थापना संख्या 66,648
वर्तमान संस्करण 3.1.5
अंतिम अपडेट 2023-11-29
प्रकाशन तिथि 2020-05-17
रेटिंग 4.17/5 कुल 481 रेटिंग्स
डेवलपर https://blade.sk
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://blade.sk/
सहायता पृष्ठ URL http://blade.sk/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click to Remove Element",
    "version": "3.1.5",
    "manifest_version": 3,
    "description": "Remove annoying elements with a single click",
    "icons": {
        "128": "icons\/icon_128.png",
        "48": "icons\/icon_48.png",
        "16": "icons\/action_inactive.png"
    },
    "action": {
        "default_icon": "icons\/action_inactive.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+X",
                "mac": "Command+Shift+X",
                "chromeos": "Ctrl+Shift+X",
                "linux": "Ctrl+Shift+X"
            }
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "ctre_content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "commands",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "incognito": "spanning"
}