Mini Y

Makes YouTube video float while you're reading/writing comments so you can do both at the same time.

Mini Y क्या है?

Mini Y https://jianweichuah.github.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes YouTube video float while you're reading/writing comments so you can do both at the same time."।

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

screenshot
screenshot
screenshot

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

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

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

                        Install -> refresh YouTube page -> scroll down -> read comments and watch videos at the same time.

Open-source on GitHub: https://github.com/jianweichuah/miniyoutube
If you'd like to buy me coffee:
https://cash.me/$jianweichuah
https://www.paypal.me/jianweichuah

** Note: the recent update doesn't really read your browsing history. That permission is required to support the enable/disable feature when you click on the app icon on the top right corner. You can verify that I do not read any of your browsing history at https://github.com/jianweichuah/miniyoutube. Also, if you feel like that feature is not necessary, I'd be happy to hear about it.**

Features:
- Automatically switch the video to small screen when the video player is out of screen and restore it when you scroll up again.
- Draggable screen to allow you to choose where to place it.
- Resizable screen to let you pick the perfect size.
- Remembers the the size and position of the screen where you left off for the next videos.
- No extra steps required!

Note:
YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

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

नाम Mini Y Mini Y
ID acphfpihfjpgnihkgelafhmjeoodbehp
आधिकारिक URL https://chrome.google.com/webstore/detail/mini-y/acphfpihfjpgnihkgelafhmjeoodbehp
विवरण Makes YouTube video float while you're reading/writing comments so you can do both at the same time.
फ़ाइल का आकार 96.92 KB
स्थापना संख्या 9,000
वर्तमान संस्करण 1.2.30
अंतिम अपडेट 2024-01-08
प्रकाशन तिथि 2018-04-30
रेटिंग 4.47/5 कुल 354 रेटिंग्स
डेवलपर https://jianweichuah.github.io
ईमेल [email protected]
भुगतान के प्रकार in_app
एक्सटेंशन वेबसाइट https://jianweichuah.github.io/miniyoutube/
सहायता पृष्ठ URL https://github.com/jianweichuah/miniyoutube/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mini Y",
    "author": "Mini Y contributors",
    "description": "Makes YouTube video float while you're reading\/writing comments so you can do both at the same time.",
    "version": "1.2.30",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ],
            "css": [
                "floatVideo.css"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "floatVideo.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Mini Y",
        "default_icon": {
            "19": "images\/icon128.png",
            "38": "images\/icon128.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}