Filter Anything Everywhere

Filter feeds, lists and comment sections on all websites at the same time with this universal keyword blocker.

Filter Anything Everywhereคืออะไร?

Filter Anything Everywhere เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Procrastinating Student และคุณลักษณะหลักของมันคือ "Filter feeds, lists and comment sections on all websites at the same time with this universal keyword blocker."

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

screenshot
screenshot
screenshot

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

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

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

                        Tired of information overload? Take control of your browsing experience with this powerful Chrome extension! It filters out unwanted content from Facebook, Google News, Reddit, Twitter, YouTube, and more, all in one place.

Key features:
- One-click access to filter settings.
- Block unwanted topics, clickbait, and spam.
- Customize settings for each website.

To get started, simply install the extension and click the icon next to the address bar to access the control panel. Fine-tune your settings to enjoy a clutter-free, personalized online journey. Embrace a cleaner, more personalized browsing experience – try Filter Anything Everywhere today!

---

Feel free to submit issues and pull requests:
https://github.com/yeahpython/filter-anything-everywhere

---

History:
* 1.3.2
 - Improved language support, e.g. Cyrillic characters, Chinese, Korean, Japanese
 - Better support for emojis and special characters
 - Migration to Manifest V3
 - Start using TypeScript/Node/Rollup/Jest/Prettier
* 1.3.1
 - The code has been cleaned up a bit for upload to GitHub. The latest version of the extension includes the cleanup.
* 1.3.0
 - Fix for YouTube search results
 - Support for Chinese characters
 - Performance improvements
* 1.2.4
 - Fixes issue where entire YouTube page is hidden.
* 1.2.3
 - Wildcard matching is now supported. "*" matches any number of non-whitespace characters, and "?" matches exactly one non-whitespace character. Examples:
 - - "col*r" matches "color" and "colour". 
 - - "gr?y" matches both "gray" and "grey", but not "gravy" since "?" can only match one character.
 - - "*?coin" matches "bitcoin" and "dogecoin" but not "coin", since "?" requires at least one character.                    

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

ชื่อ Filter Anything Everywhere Filter Anything Everywhere
ID jmandnadineideoebcmaekgaccoagnki
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/filter-anything-everywher/jmandnadineideoebcmaekgaccoagnki
คำอธิบาย Filter feeds, lists and comment sections on all websites at the same time with this universal keyword blocker.
ขนาดไฟล์ 198 KB
จำนวนการติดตั้ง 4,000
เวอร์ชันปัจจุบัน 1.3.2
อัปเดตครั้งล่าสุด 2023-04-15
วันที่เผยแพร่ 2019-09-27
คะแนน 4.54/5 รวมทั้งหมด 56 คะแนน
ผู้พัฒนา Procrastinating Student
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/yeahpython/filter-anything-everywhere
URL หน้าช่วยเหลือ https://github.com/yeahpython/filter-anything-everywhere/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Filter Anything Everywhere",
    "description": "Filter feeds, lists and comment sections on all websites at the same time with this universal keyword blocker.",
    "version": "1.3.2",
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content_bundle.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "background_bundle.js",
        "type": "module"
    },
    "icons": {
        "128": "images\/glasses128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_page": false
    },
    "action": {
        "default_icon": {
            "19": "images\/glasses19.png",
            "38": "images\/glasses38.png"
        },
        "default_title": "Filter Anything Everywhere",
        "default_popup": "browser_action.html"
    },
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "manifest_version": 3
}