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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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"
}