Bing Video Helper
Search results link directly to the source rather than the Bing Video Player.
Что такое Bing Video Helper?
Bing Video Helper - это расширение Chrome, разработанное ambloem, и его основная функция - "Search results link directly to the source rather than the Bing Video Player.".
Снимки экрана расширения
Скачать файл CRX расширения Bing Video Helper
Скачайте файлы расширений Bing Video Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension fixes Bing video search results so that they link directly to the source rather than to the Bing video player. This extension also has an optional "right-click to search Bing video" feature.
Основная информация о расширении
Название | Bing Video Helper |
ID | mioahmmiboemablcdjfndpgljepiclbb |
Официальный URL | https://chromewebstore.google.com/detail/bing-video-helper/mioahmmiboemablcdjfndpgljepiclbb |
Описание | Search results link directly to the source rather than the Bing Video Player. |
Размер файла | 19.36 KB |
Количество установок | 93 |
Текущая Версия | 1.5 |
Последнее Обновление | 2022-06-05 |
Дата публикации | 2021-05-15 |
Рейтинг | 3.67/5 Всего 3 оценок |
Разработчик | ambloem |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.bing.com\/search*", "https:\/\/*.bing.com\/videos*" ], "js": [ "jsonlite.js", "content.js" ] } ], "browser_action": { "default_title": "__MSG_extensionName__", "default_icon": "icons\/logo-128.png", "default_popup": "options.html" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "contextMenus", "storage" ], "icons": { "128": "icons\/logo-128.png" }, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "default_locale": "en", "browser_specific_settings": { "gecko": { "id": "{A18D4A17-D401-7C30-F6C3-9F6B39E5B28E}" } }, "author": "Aaron Bloem", "manifest_version": 2, "version": "1.5" } |