CustomBlocker

Filter any element on any web site with any condition with XPath and RegExp

ما هو CustomBlocker؟

CustomBlocker هو إضافة Chrome تم تطويرها بواسطة http://blog.maripo.org، والميزة الرئيسية لها هي "Filter any element on any web site with any condition with XPath and RegExp".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة CustomBlocker

قم بتنزيل ملفات الامتداد CustomBlocker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        CustomBlocker allows you to add "mute" functionality to any website with customized filter.
For example, you can....

* Block tweets with specific hashtags, URL or keywords on Twitter
* Hide tweets posted by specific apps on Twitter
* Mute reviews written by specific users on Amazon or other shopping sites
* Block comments which contain unpleasant or offensive words or tags on Facebook
* Remove results of specific domains from Google search results
* Filter videos by titles on YouTube
* Make ads invisible even if they are displayed in styles of "normal" posts

Filters consist of keywords, URLs (wildcards and regular expressions are available) and CSS selectors or XPaths to specify elements to block, so you can create custom filters for all of your favorite websites. 

CustomBlocker doesn't require special knowledge of CSS of XPath. It automatically analyzes structures of websites and suggest suitable selectors!
You can create rules instantly by right-clicking elements on websites.

source code 
https://github.com/maripo/CustomFilter                    

معلومات أساسية عن التمديد

الاسم CustomBlocker CustomBlocker
ID elnfhbjabfcepfnaeoehffgmifcfjlha
عنوان URL الرسمي https://chrome.google.com/webstore/detail/elnfhbjabfcepfnaeoehffgmifcfjlha
الوصف Filter any element on any web site with any condition with XPath and RegExp
حجم الملف 1.05 MB
عدد التثبيتات 17,382
النسخة الحالية 4.1.4
آخر تحديث 2020-03-27
تاريخ النشر 2020-03-23
تقييم 3.51/5 مجموع تقييمات 168
المطور http://blog.maripo.org
نوع الدفع free
اللغات المدعومة en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CustomBlocker",
    "version": "4.1.4",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "browser_action": {
        "default_title": "CustomBlocker preference",
        "default_icon": "icon\/icon_disabled.png",
        "default_popup": "index.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "options_page": "pref\/index.html",
    "background": {
        "page": "background_page.html"
    },
    "web_accessible_resources": [
        "css\/reset.css",
        "css\/rule_editor_common.css",
        "css\/rule_editor.css",
        "css\/smart_rule_editor.css",
        "css\/keywords.css",
        "css\/rule_editor_cursor.css",
        "img\/loading.gif",
        "img\/smart_path_preview_img.png",
        "img\/word_delete.png",
        "img\/word_delete_hover.png",
        "img\/rule_editor_close.png",
        "img\/wand.png",
        "img\/wand_transparent.png",
        "img\/icon_upper.png",
        "img\/help_icon.png",
        "img\/icon_regexp.png",
        "img\/keyword_delete.png",
        "img\/keyword_case_sensitive_red.png",
        "img\/keyword_include_href_red.png",
        "img\/keyword_regexp_red.png",
        "img\/keyword_case_sensitive_blue.png",
        "img\/keyword_include_href_blue.png",
        "img\/keyword_regexp_blue.png",
        "rule_editor_frame_ja.html",
        "rule_editor_frame_en.html",
        "en\/rule_editor_frame.html",
        "ja\/rule_editor_frame.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/util.js",
                "src\/uuid.js",
                "src\/element_highlighter.js",
                "src\/db\/DbObj.js",
                "src\/db\/Rule.js",
                "src\/db\/Word.js",
                "src\/rule\/Storage.js",
                "src\/rule\/Rule.js",
                "src\/rule\/Word.js",
                "src\/rule\/WordGroup.js",
                "src\/rule_executor.js",
                "src\/contentscript.js",
                "src\/smart_path_analyzer.js",
                "src\/rule_editor.js",
                "src\/smart_rule_editor.js",
                "src\/path_analyzer.js",
                "src\/xpath_builder.js",
                "src\/css_builder.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "background",
        "tabs",
        "storage",
        "contextMenus",
        "chrome:\/\/favicon\/",
        "unlimitedStorage"
    ],
    "icons": {
        "128": "icon\/icon128.png",
        "48": "icon\/icon48.png",
        "32": "icon\/icon32.png"
    }
}