Don't add custom search engines

Prevent Google Chrome from auto-adding custom search engines

Don't add custom search engines란 무엇입니까?

Don't add custom search engines은(는) Greg Sadetsky에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Prevent Google Chrome from auto-adding custom search engines"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Don't add custom search engines 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Stop websites from adding custom search engines with this simple extension.

This extension does not connect to any third-party servers.

Its source code is available here:
https://github.com/gregsadetsky/chrome-dont-add-custom-search-engines

====

Updated July 22nd, 2019
- support for more sites (including DuckDuckGo)
- bug fixes

Updated June 16th, 2018
- support for more sites
- bug fixes                    

확장 프로그램 기본 정보

이름 Don't add custom search engines Don't add custom search engines
ID dnodlcololidkjgbpeoleabmkocdhacc
공식 URL https://chromewebstore.google.com/detail/dont-add-custom-search-en/dnodlcololidkjgbpeoleabmkocdhacc
설명 Prevent Google Chrome from auto-adding custom search engines
파일 크기 7.52 KB
설치 횟수 24,036
현재 버전 0.0.6
최근 업데이트 2019-07-22
출시 날짜 2019-07-22
평점 3.58/5 총 83 개의 평점
개발자 Greg Sadetsky
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.dictation.tools/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Greg Sadetsky et al.",
    "manifest_version": 2,
    "name": "Don't add custom search engines",
    "version": "0.0.6",
    "description": "Prevent Google Chrome from auto-adding custom search engines",
    "homepage_url": "https:\/\/github.com\/gregsadetsky\/chrome-dont-add-custom-search-engines",
    "minimum_chrome_version": "49.0.0.0",
    "offline_enabled": true,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "icons": {
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_title": "Don't add custom search engines",
        "default_icon": "icon-64.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}