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 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 |
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 |
عنوان صفحة سياسة الخصوصية | 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": [ " |