TED Player Control
Shortcut to play/pause videos on TED.com using the spacebar.
Co to jest TED Player Control?
TED Player Control to rozszerzenie Chrome opracowane przez Matheus Pedroso, a jego główną funkcją jest „Shortcut to play/pause videos on TED.com using the spacebar.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia TED Player Control
Pobierz pliki rozszerzeń TED Player Control w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ejkfpcfaajhhgaegdkgmdfgaookckeac |
| Oficjalny URL | https://chromewebstore.google.com/detail/ted-player-control/ejkfpcfaajhhgaegdkgmdfgaookckeac |
| Opis | Shortcut to play/pause videos on TED.com using the spacebar. |
| Rozmiar pliku | 18.75 KB |
| Liczba instalacji | 1,000 |
| Aktualna Wersja | 0.1.1 |
| Ostatnia Aktualizacja | 2017-03-21 |
| Data Publikacji | 2017-03-20 |
| Ocena | 4.14/5 Łącznie 7 Oceny |
| Deweloper | Matheus Pedroso |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/mathop/ted-player-control |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "TED Player Control",
"description": "Shortcut to play\/pause videos on TED.com using the spacebar.",
"version": "0.1.1",
"icons": {
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"permissions": [
"http:\/\/www.ted.com\/"
],
"content_scripts": [
{
"matches": [
"http:\/\/www.ted.com\/talks\/*",
"http:\/\/www.ted.com\/playlists\/*"
],
"js": [
"src\/contentscript.js"
]
}
],
"web_accessible_resources": [
"src\/script.js"
]
} | |