Bing Video Helper

Search results link directly to the source rather than the Bing Video Player.

什么是Bing Video Helper?

Bing Video Helper是由ambloem开发的Chrome扩展程序,该扩展的主要功能是“Search results link directly to the source rather than the Bing Video Player.”。

扩展截图

screenshot

下载Bing Video Helper扩展crx文件

下载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 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"
}