Search Video Embed Tool

Make Videos Playable In Search

Apa itu Search Video Embed Tool?

Search Video Embed Tool adalah ekstensi Chrome yang dikembangkan oleh ovsak.gavin, dan fitur utamanya adalah "Make Videos Playable In Search".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Search Video Embed Tool

Unduh file ekstensi Search Video Embed Tool dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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™                    

Informasi Dasar Ekstensi

Nama Search Video Embed Tool Search Video Embed Tool
ID jihbgghmjlfcdncdfnehichfkldmkjoh
URL Resmi https://chrome.google.com/webstore/detail/search-video-embed-tool/jihbgghmjlfcdncdfnehichfkldmkjoh
Deskripsi Make Videos Playable In Search
Ukuran File 336 KB
Jumlah Instalasi 64
Versi Saat Ini 1.4
Terakhir Diperbarui 2014-10-29
Tanggal Publikasi 2014-10-29
Penilaian 2.00/5 Total 2 Penilaian
Pengembang ovsak.gavin
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://www.workbygavin.com
Bahasa yang Didukung 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"
            ]
        }
    ]
}