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文件

下载Don't add custom search engines扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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:\/\/*\/*"
    ]
}