Remove unwanted elements

Remove unwanted elements from the page

什麼是Remove unwanted elements?

Remove unwanted elements是由psoft123開發的Chrome擴展程式,該擴展的主要功能是“Remove unwanted elements from the page”。

擴展截圖

screenshot

下載Remove unwanted elements擴展crx文件

下載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
官方網址 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"
        }
    }
}