Youtime

Youtime will pick up all the time stamps present in the comments and description for you

Qu'est-ce que Youtime ?

Youtime est une extension Chrome développée par Ashwath Vijayan, et sa fonction principale est "Youtime will pick up all the time stamps present in the comments and description for you".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Youtime

Téléchargez les fichiers d'extension Youtime au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Youtime is a timestamp with description extractor for Youtube videos. There are times when you are listening to a playlist and wish there was an easier way to skip to the next song rather than going through the description and comments, and finding that one comment that has the timestamps in it. Well, look no further, Youtime can do that for you! Just load up the comments and hit the extension, you will find all the timestamps that exist in the comment and the description section.

But wait up, its not just hour long playlists that Youtime helps, but also the short videos which has all the interesting sections mentioned in the comments by other users, you will be able to see that too.                    

Informations de Base sur l'Extension

Nom Youtime Youtime
ID ocaofghmcnmckbnlmgocfjemofblpgdk
URL Officiel https://chromewebstore.google.com/detail/youtime/ocaofghmcnmckbnlmgocfjemofblpgdk
Description Youtime will pick up all the time stamps present in the comments and description for you
Taille du Fichier 49.5 KB
Nombre d'Installations 22
Version Actuelle 1.0
Dernière Mise à Jour 2020-07-08
Date de Publication 2020-07-08
Évaluation 5.00/5 Total 4 Évaluations
Développeur Ashwath Vijayan
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/AshwathVS
URL de la Page d'Aide https://github.com/AshwathVS/youtime
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtime",
    "version": "1.0",
    "description": "Youtime will pick up all the time stamps present in the comments and description for you",
    "permissions": [
        "webNavigation",
        "https:\/\/www.youtube.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_title": "Youtime - Switch to Youtube to use the extension",
        "default_icon": {
            "16": "images\/icon-disabled-16.png",
            "32": "images\/icon-disabled-32.png"
        }
    },
    "web_accessible_resources": [
        "script.js"
    ],
    "manifest_version": 2
}