Don't add custom search engines

Prevent Google Chrome from auto-adding custom search engines

Don't add custom search engines là gì?

Don't add custom search engines là một tiện ích mở rộng Chrome được phát triển bởi Greg Sadetsky, và tính năng chính của nó là "Prevent Google Chrome from auto-adding custom search engines".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Don't add custom search engines

Tải xuống các tệp mở rộng Don't add custom search engines dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Don't add custom search engines Don't add custom search engines
ID dnodlcololidkjgbpeoleabmkocdhacc
URL Chính Thức https://chromewebstore.google.com/detail/dont-add-custom-search-en/dnodlcololidkjgbpeoleabmkocdhacc
Mô tả Prevent Google Chrome from auto-adding custom search engines
Kích Thước Tệp 7.52 KB
Số Lần Cài Đặt 24,036
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2019-07-22
Ngày Phát Hành 2019-07-22
Đánh Giá 3.58/5 Tổng số 83 Đánh Giá
Nhà Phát Triển Greg Sadetsky
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.dictation.tools/privacy.html
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}