YouTube Chapters In Player

Shows YouTube chapters right in the player

YouTube Chapters In Player क्या है?

YouTube Chapters In Player ris58h द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows YouTube chapters right in the player"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Chapters In Player एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Just click on chapters button at the bottom of YouTube video player to show chapters list right in the player.

Key features:
- Shows chapters right in the player.
- Works in Fullscreen and Theater modes.
- Works for embedded videos.
- Previous/Next chapter buttons.
- Key Moments support.
- Chapters from pinned comment.
- Open Source https://github.com/ris58h/youtube-chapters-in-player                    

एक्सटेंशन की मूल जानकारी

नाम YouTube Chapters In Player YouTube Chapters In Player
ID ikalbbakholajifblhnmbcffhmhnnohl
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-chapters-in-playe/ikalbbakholajifblhnmbcffhmhnnohl
विवरण Shows YouTube chapters right in the player
फ़ाइल का आकार 14.15 KB
स्थापना संख्या 955
वर्तमान संस्करण 0.3.2
अंतिम अपडेट 2023-11-27
प्रकाशन तिथि 2022-10-13
रेटिंग 4.13/5 कुल 8 रेटिंग्स
डेवलपर ris58h
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://ris58h.github.io/youtube-chapters-in-player/
सहायता पृष्ठ URL https://github.com/ris58h/youtube-chapters-in-player/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Chapters In Player",
    "description": "Shows YouTube chapters right in the player",
    "version": "0.3.2",
    "applications": {
        "gecko": {
            "id": "youtube-chapters-in-player@ris58h"
        }
    },
    "permissions": [
        "webRequest",
        "declarativeNetRequest",
        "declarativeNetRequestWithHostAccess",
        "declarativeNetRequestFeedback"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube-nocookie.com\/embed\/*"
            ],
            "all_frames": true,
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ]
}