Fit YT to Width

Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.

Fit YT to Width क्या है?

Fit YT to Width Andrew Lansing द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook."।

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

screenshot
screenshot

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

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

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

                        Tip: Chromebook users can make use of the alt + [ and alt + ] shortcuts to resize windows to fit half of your screen as seen in the screenshot                    

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

नाम Fit YT to Width Fit YT to Width
ID ijigameikofpgbincaiclnjlifjfekpf
आधिकारिक URL https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf
विवरण Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.
फ़ाइल का आकार 7.14 KB
स्थापना संख्या 167
वर्तमान संस्करण 1.2
अंतिम अपडेट 2017-07-18
प्रकाशन तिथि 2017-07-18
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Andrew Lansing
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fit YT to Width",
    "version": "1.2",
    "description": "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Fit YT to Witdh"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "https:\/\/www.youtube.com\/*",
        "tabs"
    ],
    "manifest_version": 2
}