Bing Video Helper

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

Qu'est-ce que Bing Video Helper ?

Bing Video Helper est une extension Chrome développée par ambloem, et sa fonction principale est "Search results link directly to the source rather than the Bing Video Player.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Bing Video Helper

Téléchargez les fichiers d'extension Bing Video Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Bing Video Helper Bing Video Helper
ID mioahmmiboemablcdjfndpgljepiclbb
URL Officiel https://chromewebstore.google.com/detail/bing-video-helper/mioahmmiboemablcdjfndpgljepiclbb
Description Search results link directly to the source rather than the Bing Video Player.
Taille du Fichier 19.36 KB
Nombre d'Installations 93
Version Actuelle 1.5
Dernière Mise à Jour 2022-06-05
Date de Publication 2021-05-15
Évaluation 3.67/5 Total 3 Évaluations
Développeur ambloem
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
}