YT Auto Load More

Automatically loads more items (comments, videos, playlists, etc.) on YouTube(tm)'s pages.

YT Auto Load More क्या है?

YT Auto Load More Ricardo Antunes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically loads more items (comments, videos, playlists, etc.) on YouTube(tm)'s pages."।

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

screenshot

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

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

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

                        A chrome extension to automatically load items on Youtube(tm)'s pages (videos, playlist videos, comments, etc).

Click the icon at the upper right to start/pause loading the items. 

Source code is available at https://github.com/rantunes1/yt-load-more-items                    

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

नाम YT Auto Load More YT Auto Load More
ID illnlopnlfnmdbanolhbjihgeliaakdl
आधिकारिक URL https://chromewebstore.google.com/detail/yt-auto-load-more/illnlopnlfnmdbanolhbjihgeliaakdl
विवरण Automatically loads more items (comments, videos, playlists, etc.) on YouTube(tm)'s pages.
फ़ाइल का आकार 22.16 KB
स्थापना संख्या 379
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2018-07-10
प्रकाशन तिथि 2018-07-10
रेटिंग 3.44/5 कुल 18 रेटिंग्स
डेवलपर Ricardo Antunes
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/rantunes1/yt-load-more-items/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "short_name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "1.1.1",
    "author": "Ricardo Antunes",
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.youtube.com\/embed\/*"
            ],
            "js": [
                "scripts\/yt-load-more-items.js"
            ],
            "css": [
                "styles\/yt-load-more-items.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.*"
    ]
}