Bing Video Helper

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

Was ist Bing Video Helper?

Bing Video Helper ist eine Chrome-Erweiterung, die von ambloem entwickelt wurde, und ihr Hauptmerkmal ist "Search results link directly to the source rather than the Bing Video Player.".

Erweiterungsscreenshots

screenshot

Bing Video Helper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bing Video Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Bing Video Helper Bing Video Helper
ID mioahmmiboemablcdjfndpgljepiclbb
Offizielle URL https://chromewebstore.google.com/detail/bing-video-helper/mioahmmiboemablcdjfndpgljepiclbb
Beschreibung Search results link directly to the source rather than the Bing Video Player.
Dateigröße 19.36 KB
Installationsanzahl 93
Aktuelle Version 1.5
Letztes Update 2022-06-05
Veröffentlichungsdatum 2021-05-15
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler ambloem
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
}