Google Ads Hider

This extension hides ads when searching at Google

ما هو Google Ads Hider؟

Google Ads Hider هو إضافة Chrome تم تطويرها بواسطة doratomer، والميزة الرئيسية لها هي "This extension hides ads when searching at Google".

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

screenshot

تحميل ملف CRX للإضافة Google Ads Hider

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

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

                        When you search something to purchase at google, we will hide/blur/mark the ads  that you can search without paying more at random websites.                    

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

الاسم Google Ads Hider Google Ads Hider
ID hphgneaeckdmikgklodjnapgjdkjamcg
عنوان URL الرسمي https://chromewebstore.google.com/detail/google-ads-hider/hphgneaeckdmikgklodjnapgjdkjamcg
الوصف This extension hides ads when searching at Google
حجم الملف 23.87 KB
عدد التثبيتات 28
النسخة الحالية 0.1.2
آخر تحديث 2021-05-16
تاريخ النشر 2021-05-05
تقييم 5.00/5 مجموع تقييمات 1
المطور doratomer
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Ads Hider",
    "description": "This extension hides ads when searching at Google",
    "version": "0.1.2",
    "manifest_version": 2,
    "icons": {
        "128": ".\/ad_hider_128.png"
    },
    "options_page": ".\/options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "include_globs": [
                "http:\/\/*.google.*\/search*",
                "https:\/\/*.google.*\/search*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "myStyle.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Privacy Extension For WhatsApp Web",
        "default_popup": ".\/popup.html",
        "default_icon": {
            "32": ".\/ad_hider_128.png"
        }
    },
    "permissions": [
        "https:\/\/www.google.com\/*",
        "storage"
    ]
}