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