Youtube Search Navigator

Adds keyboard shortcuts to Youtube Search Pages! Yaay!

Cos'è Youtube Search Navigator?

Youtube Search Navigator è un'estensione di Chrome sviluppata da hristoapps, e la sua funzione principale è "Adds keyboard shortcuts to Youtube Search Pages! Yaay!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube Search Navigator

Scarica i file di estensione Youtube Search Navigator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension is for all the people out there who like to save some time, and use shortcuts! It adds arrow key search possibility in Youtube search bar.

KEEP IN MIND! This extension is still in development, so some bugs may come up here and there!

ALSO KEEP IN MIND! It works only with the newest version of Youtube, which you can check out at youtube.com/new                    

Informazioni di Base sull'Estensione

Nome Youtube Search Navigator Youtube Search Navigator
ID nplfabbikfflncpadioencndbagkhhhi
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-search-navigator/nplfabbikfflncpadioencndbagkhhhi
Descrizione Adds keyboard shortcuts to Youtube Search Pages! Yaay!
Dimensione del File 15.67 KB
Conteggio Installazioni 75
Versione Corrente 0.0.2
Ultimo Aggiornamento 2018-01-30
Data di Pubblicazione 2018-01-30
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore hristoapps
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Search Navigator",
    "version": "0.0.2",
    "description": "Adds keyboard shortcuts to Youtube Search Pages! Yaay!",
    "background": {
        "scripts": [
            "eventPage.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "keymaster.min.js",
                "youtube_navigation.js"
            ],
            "css": [
                "result.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/www.youtube.com\/*",
        "activeTab",
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    }
}