Do not automatically add other search engines

Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents

Do not automatically add other search enginesคืออะไร?

Do not automatically add other search engines เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Stanford HCI Research Group และคุณลักษณะหลักของมันคือ "Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Do not automatically add other search engines

ดาวน์โหลดไฟล์ส่วนขยาย Do not automatically add other search engines ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Chrome automatically adds sites to your list of custom search engines list when you visit them. This extension prevents this behavior.

Code: https://github.com/gkovacs/do-not-automatically-add-other-search-engines

Note that Chrome uses a number of heuristics to add search engines, and while this extension prevents the most common approach, we cannot prevent all of them. Hence, some search engines may still get through. To remove added search engines (in this case, those that contain '.' in the keyword), navigate to chrome://settings/searchEngines and run the following code a few times (via the developer console, Command-Option-J or Ctrl-Shift-J)

for (var x of document.querySelectorAll('.keyword-column')) {
  if (x.innerText.indexOf('.') != -1) {
    x.parentNode.parentNode.childNodes[1].click()
  }
}                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Do not automatically add other search engines Do not automatically add other search engines
ID lejpfpoaicennngnbmkhgagndoiijjip
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/do-not-automatically-add/lejpfpoaicennngnbmkhgagndoiijjip
คำอธิบาย Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents
ขนาดไฟล์ 3.21 KB
จำนวนการติดตั้ง 34
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2016-12-22
วันที่เผยแพร่ 2016-12-21
คะแนน 3.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Stanford HCI Research Group
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://github.com/habitlab/habitlab/wiki/Privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Do not automatically add other search engines",
    "short_name": "nosearchengines",
    "description": "Chrome automatically adds sites to your search engines list when you visit them, which this extension prevents",
    "version": "1.0.1",
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "contentscript.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ]
}