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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Greg Sadetsky และคุณลักษณะหลักของมันคือ "Prevent Google Chrome from auto-adding custom search engines"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Don't add custom search engines

ดาวน์โหลดไฟล์ส่วนขยาย 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:\/\/*\/*"
    ]
}