YouTube Spacebar pausing

Pause videos on page load with the space bar

Τι είναι το YouTube Spacebar pausing;

Το YouTube Spacebar pausing είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον D3.io, και η κύρια λειτουργία του είναι "Pause videos on page load with the space bar".

Λήψη αρχείου CRX της επέκτασης YouTube Spacebar pausing

Λήψη αρχείων επέκτασης YouTube Spacebar pausing σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα YouTube Spacebar pausing YouTube Spacebar pausing
ID bkpindoeklkmcchcidehelnihghppcdg
Επίσημο URL https://chrome.google.com/webstore/detail/youtube-spacebar-pausing/bkpindoeklkmcchcidehelnihghppcdg
Περιγραφή Pause videos on page load with the space bar
Μέγεθος Αρχείου 23.57 KB
Αριθμός Εγκαταστάσεων 28
Τρέχουσα Έκδοση 1.3.0
Τελευταία Ενημέρωση 2016-07-05
Ημερομηνία Δημοσίευσης 2016-07-05
Αξιολόγηση 3.38/5 Συνολικά 13 Αξιολογήσεις
Προγραμματιστής D3.io
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.d3.io
Διεύθυνση URL της Σελίδας Βοήθειας https://www.d3.io/contact
Υποστηριζόμενες Γλώσσες 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\/*"
    ]
}