Timeline for Youtube

Creates a timeline from youtube comments.

Was ist Timeline for Youtube?

Timeline for Youtube ist eine Chrome-Erweiterung, die von faisal.mansoor entwickelt wurde, und ihr Hauptmerkmal ist "Creates a timeline from youtube comments.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Timeline for Youtube-Erweiterungs-CRX-Datei herunterladen

Laden Sie Timeline for Youtube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Timeline for Youtube Timeline for Youtube
ID obknajoccmgkokfoclhgjnlcekgglkmn
Offizielle URL https://chrome.google.com/webstore/detail/timeline-for-youtube/obknajoccmgkokfoclhgjnlcekgglkmn
Beschreibung Creates a timeline from youtube comments.
Dateigröße 49.28 KB
Installationsanzahl 136
Aktuelle Version 1.0.12
Letztes Update 2013-08-11
Veröffentlichungsdatum 2013-08-11
Bewertung 1.57/5 Insgesamt 7 Bewertungen
Entwickler faisal.mansoor
Zahlungsart free
Erweiterungswebsite https://www.facebook.com/CommentTimelineForYoutube
Hilfeseite URL https://www.facebook.com/CommentTimelineForYoutube
Unterstützte Sprachen 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"
    }
}