Search Video Embed Tool

Make Videos Playable In Search

Search Video Embed Tool là gì?

Search Video Embed Tool là một tiện ích mở rộng Chrome được phát triển bởi ovsak.gavin, và tính năng chính của nó là "Make Videos Playable In Search".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Search Video Embed Tool

Tải xuống các tệp mở rộng Search Video Embed Tool dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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™                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Search Video Embed Tool Search Video Embed Tool
ID jihbgghmjlfcdncdfnehichfkldmkjoh
URL Chính Thức https://chrome.google.com/webstore/detail/search-video-embed-tool/jihbgghmjlfcdncdfnehichfkldmkjoh
Mô tả Make Videos Playable In Search
Kích Thước Tệp 336 KB
Số Lần Cài Đặt 64
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2014-10-29
Ngày Phát Hành 2014-10-29
Đánh Giá 2.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển ovsak.gavin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.workbygavin.com
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}