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
官方網址 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:\/\/*\/*"
    ]
}