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."입니다.
확장 프로그램 스크린샷
Bing Video Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |