ElementHider

Hides elements that contain keywords set by user

ElementHiderคืออะไร?

ElementHider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Valtteri Hietala และคุณลักษณะหลักของมันคือ "Hides elements that contain keywords set by user"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ElementHider

ดาวน์โหลดไฟล์ส่วนขยาย ElementHider ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        **Jun18, 2023 update includes "Performance mode" which is enabled by default and should speed up the hiding of the elements.

This extension is meant to be an easy and efficient way to hide web elements and ads based on the text they contain. 

It hides for example twitter posts, news articles, facebook posts, twitch comments etc. if they contain a keyword set by you. You can also blur them out instead of hiding them completely. Blurred elements can be revealed with mouse hover.

Donate button is given on the popup and on clicking it redirects to paypal.com

*KEYWORD OPTIONS*
By default keywords are case-sensitive but you can also set them case-insensitive and decide if the word should appear exactly as you've written it (e.g. CAT but not eduCATion). Examples of the keyword options can be found on the popup screen of the extension.

*TESTING MODE*
The extension has a testing mode which highlights the elements with green borders instead of hiding them. Testing mode makes it easy to see what is going to be hidden with the current keywords. 

*ELEMENT HIDING PRECISION OPTIONS*
Precision of hiding can be adjusted from the options. It will affect how many parent elements will be hidden (for example if only the title of the article or complete article should be hidden).

*SITE SETTINGS*
Keywords can be set as site specific by adding ">>> url.com" after the keyword ("keyword >>> youtube.com") and in the options you can set the global site settings if you want to enable or disable ElemenHider on specific sites completely.

*NOTES*
Although, this extension has been found to be working with a very high success rate, it is not fully guaranteed that it will hide every single element on every website with a keyword on it. This is mainly because every site is built differently and have different structure which makes it hard to identify all of them 100% correctly. Feel free to leave feedback if you encounter any problems with the extension.

Also available for Firefox: 
https://addons.mozilla.org/firefox/addon/elementhider-vh/

Github: 
https://github.com/hievalt/ElementHider

Extension uses jQuery:
https://jquery.com/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ElementHider ElementHider
ID jnbamieaacddlfcoanmbkclnpoafhmie
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/elementhider/jnbamieaacddlfcoanmbkclnpoafhmie
คำอธิบาย Hides elements that contain keywords set by user
ขนาดไฟล์ 52.98 KB
จำนวนการติดตั้ง 3,809
เวอร์ชันปัจจุบัน 0.2.53
อัปเดตครั้งล่าสุด 2023-08-28
วันที่เผยแพร่ 2017-09-21
คะแนน 4.53/5 รวมทั้งหมด 53 คะแนน
ผู้พัฒนา Valtteri Hietala
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ElementHider",
    "version": "0.2.53",
    "manifest_version": 3,
    "description": "Hides elements that contain keywords set by user",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/elemhide\/jnbamieaacddlfcoanmbkclnpoafhmie",
    "icons": {
        "128": "icons\/icon.png"
    },
    "default_locale": "en",
    "options_ui": {
        "page": "src\/browser_action\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "bg.js"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": {
        "default_icon": "icons\/icon.png",
        "default_title": "ElementHider",
        "default_popup": "src\/browser_action\/popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/browser_action\/jquery.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}