Timeline for Youtube
Creates a timeline from youtube comments.
Co to jest Timeline for Youtube?
Timeline for Youtube to rozszerzenie Chrome opracowane przez faisal.mansoor, a jego główną funkcją jest „Creates a timeline from youtube comments.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Timeline for Youtube
Pobierz pliki rozszerzeń Timeline for Youtube 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
A Google Chrome plugin that automatically creates a Youtube video timeline from its comments. Great for getting an overall view of which section of the video viewers found interesting. Also helps skip the boring parts.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | obknajoccmgkokfoclhgjnlcekgglkmn |
Oficjalny URL | https://chrome.google.com/webstore/detail/timeline-for-youtube/obknajoccmgkokfoclhgjnlcekgglkmn |
Opis | Creates a timeline from youtube comments. |
Rozmiar pliku | 49.28 KB |
Liczba instalacji | 136 |
Aktualna Wersja | 1.0.12 |
Ostatnia Aktualizacja | 2013-08-11 |
Data Publikacji | 2013-08-11 |
Ocena | 1.57/5 Łącznie 7 Oceny |
Deweloper | faisal.mansoor |
Typ Płatności | free |
Strona Rozszerzenia | https://www.facebook.com/CommentTimelineForYoutube |
Adres URL Strony Pomocy | https://www.facebook.com/CommentTimelineForYoutube |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Timeline for Youtube", "description": "Creates a timeline from youtube comments.", "manifest_version": 2, "version": "1.0.12", "content_scripts": [ { "js": [ "jquery-1.9.1.js", "utilities.js", "ycomments.js" ], "css": [ "ycomments.css" ], "matches": [ "*:\/\/*.youtube.com\/watch*" ] } ], "background": { "scripts": [ "jquery-1.9.1.js", "utilities.js", "background.js" ], "persistent": false }, "permissions": [ "http:\/\/www.youtube.com\/", "https:\/\/www.youtube.com\/", "storage" ], "web_accessible_resources": [ "settings.png" ], "icons": { "16": "icon128.png", "48": "icon128.png", "128": "icon128.png" } } |