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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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\/*"
    ]
}