Google Search Ad Remover And Customizer

This extension gives you the ability to customize how your Google search results look like.

Google Search Ad Remover And Customizer란 무엇입니까?

Google Search Ad Remover And Customizer은(는) https://eecs.blog에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension gives you the ability to customize how your Google search results look like."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Google Search Ad Remover And Customizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        What does this extension do?

This extension allows you to customize how your Google Search results are displayed. You can:

    Remove, Move, Color the link of the webpage in the search result.
    Remove, Make the Ads stand out(make ad more obvious, make ad really obvious).
    Remove Emojis from titles and descriptions of search results.
    Remove other stuff Google inserts in the search results(“People also ask”, “Top News”, …).



Why I made it?

Some time ago Google changed how their search results appear. Ads use to be obvious compared to regular search results.

After the update, it is way harder to tell the difference between an ad and a genuine search result. What Google is trying to do here is increase the CTR for their ads by trying to blend them in with the regular search results.

Compared to how Google Search results looked years ago there are now fewer results per page and the pages contain a bunch of other clutter that you might or might not find useful.

I don’t really appreciate how they have changed the search results in the past years. If you don’t either you can use this extension I made to clean them up.

I didn’t make this extension for profit. As mentioned above I made this extension because I didn’t appreciate the new look of the Google search results and I knew there were a lot of people who didn’t either.

I also thought this would be a good opportunity to learn how to make a web browser extension and document the progress on my blog(You can find source code my Github page). The extension is free and will continue to remain so. Feel free to copy any of the code or fork the project and make your own version of the extension with other/different features.



Privacy and Guarantees

The extension doesn’t collect any information at all. It only saves the setting you choose in the extension and saves it in your browser(Feel free to look at the code.).

I make no guarantees that this extension will be without bugs or that I will keep updating it. Bugs can be reported on the projects Github page.                    

확장 프로그램 기본 정보

이름 Google Search Ad Remover And Customizer Google Search Ad Remover And Customizer
ID pdhiefmcgnjohonhoobalejfnbminlkc
공식 URL https://chromewebstore.google.com/detail/google-search-ad-remover/pdhiefmcgnjohonhoobalejfnbminlkc
설명 This extension gives you the ability to customize how your Google search results look like.
파일 크기 21.98 KB
설치 횟수 5,416
현재 버전 1.2.7
최근 업데이트 2024-02-09
출시 날짜 2020-07-24
평점 4.24/5 총 29 개의 평점
개발자 https://eecs.blog
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/EECSB/Google-Search-Customizer
도움말 페이지 URL https://github.com/EECSB/Google-Search-Customizer/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "browser_specific_settings": {
        "gecko": {
            "id": "{2ce7df96-558d-4c2c-8d88-68606ebbe8db}",
            "strict_min_version": "42.0"
        }
    },
    "name": "Google Search Ad Remover And Customizer",
    "description": "This extension gives you the ability to customize how your Google search results look like.",
    "version": "1.2.7",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "program.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}