Crunchyroll Timestamp Helper

This extension will allow you to click on timestamps from chat and move to the specified time in the video

Τι είναι το Crunchyroll Timestamp Helper;

Το Crunchyroll Timestamp Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mario, και η κύρια λειτουργία του είναι "This extension will allow you to click on timestamps from chat and move to the specified time in the video".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Crunchyroll Timestamp Helper

Λήψη αρχείων επέκτασης Crunchyroll Timestamp Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Allows timestamps to be clickable in chat and skips forward to the timestamp when clicked.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Crunchyroll Timestamp Helper Crunchyroll Timestamp Helper
ID pamhedcogfnafpdblkogpeediihohjob
Επίσημο URL https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob
Περιγραφή This extension will allow you to click on timestamps from chat and move to the specified time in the video
Μέγεθος Αρχείου 136 KB
Αριθμός Εγκαταστάσεων 34
Τρέχουσα Έκδοση 1.0.3
Τελευταία Ενημέρωση 2019-10-20
Ημερομηνία Δημοσίευσης 2019-10-20
Προγραμματιστής Mario
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Crunchyroll Timestamp Helper",
    "description": "This extension will allow you to click on timestamps from chat and move to the specified time in the video",
    "version": "1.0.3",
    "author": "Mathew Anjos",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "permissions": [
        "activeTab",
        "*:\/\/*.crunchyroll.com\/*"
    ]
}