Search Video Embed Tool

Make Videos Playable In Search

Search Video Embed Tool란 무엇입니까?

Search Video Embed Tool은(는) ovsak.gavin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make Videos Playable In Search"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Search Video Embed Tool 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Not happy with how search pages like https://www.google.com/search?q=let+it+go make it look like a video is embedded but actually is just an image of the video? This extension replaces the image with an actual embed of the video referenced. Simple, to the point.

Check out the code here https://github.com/GavinOvsak/SearchVideoEmbed and let me know if you have any suggested code changes at [email protected]!

Made for Google Search™                    

확장 프로그램 기본 정보

이름 Search Video Embed Tool Search Video Embed Tool
ID jihbgghmjlfcdncdfnehichfkldmkjoh
공식 URL https://chrome.google.com/webstore/detail/search-video-embed-tool/jihbgghmjlfcdncdfnehichfkldmkjoh
설명 Make Videos Playable In Search
파일 크기 336 KB
설치 횟수 64
현재 버전 1.4
최근 업데이트 2014-10-29
출시 날짜 2014-10-29
평점 2.00/5 총 2 개의 평점
개발자 ovsak.gavin
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.workbygavin.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search Video Embed Tool",
    "description": "Make Videos Playable In Search",
    "manifest_version": 2,
    "version": "1.4",
    "icons": {
        "16": "play16.png",
        "48": "play48.png",
        "128": "play128.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.google.com\/search*"
            ],
            "js": [
                "jquery-1.8.2.min.js",
                "myScript.js"
            ]
        }
    ]
}