Full Screen Button

Easily switch to full-screen view from toolbar!

Full Screen Button क्या है?

Full Screen Button Sevina द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily switch to full-screen view from toolbar!"।

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

screenshot

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

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

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

                        Full Screen Button is a simple extension for your browser that helps you full-screen the current tab.

There is also an option which let you maximize the active "video" element (if it is playing) instead of the tab. Please note that, you can disable this setting from the option's page. You can also use the keyboard shortcuts to maximize the active tab (Ctrl+Shift+F).

If you have a feature request, or found a bug to report, please fill out the bug report form on the add-on's homepage (https://mybrowseraddon.com/fullscreen-button.html).                    

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

नाम Full Screen Button Full Screen Button
ID iokdoigdonjidoklkaonhielnkamibnp
आधिकारिक URL https://chromewebstore.google.com/detail/full-screen-button/iokdoigdonjidoklkaonhielnkamibnp
विवरण Easily switch to full-screen view from toolbar!
फ़ाइल का आकार 25.19 KB
स्थापना संख्या 2,935
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2022-09-02
प्रकाशन तिथि 2018-12-08
रेटिंग 4.81/5 कुल 36 रेटिंग्स
डेवलपर Sevina
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://mybrowseraddon.com/fullscreen-button.html
सहायता पृष्ठ URL https://mybrowseraddon.com/fullscreen-button.html
गोपनीयता नीति पृष्ठ URL https://mybrowseraddon.com/privacy-policy/developer/sevina.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.1",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Full Screen Button",
    "permissions": [
        "storage",
        "scripting",
        "activeTab"
    ],
    "description": "Easily switch to full-screen view from toolbar!",
    "homepage_url": "https:\/\/mybrowseraddon.com\/fullscreen-button.html",
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "action": {
        "default_title": "Full Screen Button",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "commands": {
        "toggle-fullscreen": {
            "description": "Toggle Fullscreen",
            "suggested_key": {
                "mac": "Command+Shift+F",
                "default": "Ctrl+Shift+F"
            }
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}