Timeline for Youtube

Creates a timeline from youtube comments.

Vad är Timeline for Youtube?

Timeline for Youtube är en Chrome-tillägg utvecklad av faisal.mansoor, och dess huvudfunktion är "Creates a timeline from youtube comments.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Timeline for Youtube-förlängningens CRX-fil

Ladda ner Timeline for Youtube-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Timeline for Youtube Timeline for Youtube
ID obknajoccmgkokfoclhgjnlcekgglkmn
Officiell webbadress https://chrome.google.com/webstore/detail/timeline-for-youtube/obknajoccmgkokfoclhgjnlcekgglkmn
Beskrivning Creates a timeline from youtube comments.
Filstorlek 49.28 KB
Antal Installationer 136
Aktuell Version 1.0.12
Senast Uppdaterad 2013-08-11
Publiceringsdatum 2013-08-11
Betyg 1.57/5 Totalt 7 Betyg
Utvecklare faisal.mansoor
Betalningssätt free
Tilläggswebbplats https://www.facebook.com/CommentTimelineForYoutube
Hjälpsida URL https://www.facebook.com/CommentTimelineForYoutube
Stödda Språk 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"
    }
}