YT Quick Actions

Provide quick access to hidden YouTube actions.

YT Quick Actions क्या है?

YT Quick Actions socialcoms.ch द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provide quick access to hidden YouTube actions."।

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

screenshot
screenshot
screenshot

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

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

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

                        YT Quick Actions is a web extension for YouTube making actions related to watch later playlist management quicker
to access.

Concretely, YT Quick Actions offers the following features:

- Add a remove button in playlists next to the more options button
- Add a watch later button as an action under videos
- Add a watch later button as an action in home page videos
- Add a watch later button as an action in the subscriptions feed
- Add a remove button for playlists being watched

The source code for the extension can be found on GitHub: https://github.com/Compile-Time/yt-quick-actions

The following permissions are required:

- Host "https://www.youtube.com/*"
  Modify the YouTube web page to add custom elements.
- storage
  Store extension settings in browser storage.
- tabs
  Access the URL from YouTube tabs

A FAQ can be found here: https://github.com/Compile-Time/yt-quick-actions#faq                    

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

नाम YT Quick Actions YT Quick Actions
ID lopaoogidddnpogjngfhbaklhdecmcii
आधिकारिक URL https://chromewebstore.google.com/detail/yt-quick-actions/lopaoogidddnpogjngfhbaklhdecmcii
विवरण Provide quick access to hidden YouTube actions.
फ़ाइल का आकार 940 KB
स्थापना संख्या 226
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2023-07-01
प्रकाशन तिथि 2022-12-06
रेटिंग 4.67/5 कुल 3 रेटिंग्स
डेवलपर socialcoms.ch
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Compile-Time/yt-quick-actions
सहायता पृष्ठ URL https://github.com/Compile-Time/yt-quick-actions
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YT Quick Actions",
    "version": "1.1.1",
    "description": "Provide quick access to hidden YouTube actions.",
    "icons": {
        "16": "icon16.04c8a08e.png",
        "32": "icon32.9d3266e5.png",
        "48": "icon48.ecd37814.png",
        "128": "icon128.7d24975e.png"
    },
    "host_permissions": [
        "*:\/\/www.youtube.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "init-extension.69952642.js"
            ],
            "css": [
                "yt-quick-actions.32949059.css",
                "fontawesome.min.a979bc15.css",
                "solid.min.328a5715.css"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "settings.56f43fff.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/fontawesome\/webfonts\/fa-brands-400.ttf",
                "assets\/fontawesome\/webfonts\/fa-brands-400.woff2",
                "assets\/fontawesome\/webfonts\/fa-solid-900.ttf",
                "assets\/fontawesome\/webfonts\/fa-solid-900.woff2"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "use_dynamic_url": true
        }
    ]
}