Search Video Embed Tool

Make Videos Playable In Search

Search Video Embed Toolคืออะไร?

Search Video Embed Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ovsak.gavin และคุณลักษณะหลักของมันคือ "Make Videos Playable In Search"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Search Video Embed Tool

ดาวน์โหลดไฟล์ส่วนขยาย Search Video Embed Tool ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}