YouTube Spacebar pausing

Pause videos on page load with the space bar

Cos'è YouTube Spacebar pausing?

YouTube Spacebar pausing è un'estensione di Chrome sviluppata da D3.io, e la sua funzione principale è "Pause videos on page load with the space bar".

Scarica il file CRX dell'estensione YouTube Spacebar pausing

Scarica i file di estensione YouTube Spacebar pausing 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 enables you to use the spacebar to pause YouTube videos as soon as the page has loaded. YouTube usually requires that you first manually pause the video by clicking the pause button before the spacebar trick works. This will enable you to use the spacebar to pause a YouTube video whenever you feel like!


CHANGELOG
---------

1.3 
- Fixed form focus issue, preventing you from using spaces in the search bar

1.2
- Fixed issue with pausing when writing a comment

1.1
- Fixed YouTube fullscreen issue

1.0
- Released!                    

Informazioni di Base sull'Estensione

Nome YouTube Spacebar pausing YouTube Spacebar pausing
ID bkpindoeklkmcchcidehelnihghppcdg
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-spacebar-pausing/bkpindoeklkmcchcidehelnihghppcdg
Descrizione Pause videos on page load with the space bar
Dimensione del File 23.57 KB
Conteggio Installazioni 28
Versione Corrente 1.3.0
Ultimo Aggiornamento 2016-07-05
Data di Pubblicazione 2016-07-05
Valutazione 3.38/5 Totale 13 Valutazioni
Sviluppatore D3.io
Tipo di Pagamento free
Sito Web dell'Estensione https://www.d3.io
URL della Pagina di Aiuto https://www.d3.io/contact
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Spacebar pausing",
    "version": "1.3.0",
    "description": "Pause videos on page load with the space bar",
    "icons": {
        "48": "Icons\/Icon48.png",
        "128": "Icons\/Icon128.png"
    },
    "author": "D3T Digital",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scripts\/main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "short_name": "YouTube Spacebar pausing",
    "web_accessible_resources": [
        "Icons\/*"
    ]
}