Full Screen

Add fullscreen button to the Chrome toolbar and to the context (right-click) menu

Full Screen क्या है?

Full Screen https://openaddons.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add fullscreen button to the Chrome toolbar and to the context (right-click) menu"।

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

screenshot
screenshot
screenshot

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

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

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

                        📚 DESCRIPTION

This is just a full-screen button, added to the toolbar and the context menu. It does exactly the same as the keyboard shortcuts (F11 on Windows or fn+F on Mac). You can change the icon to match your chrome theme and that's it.

I made this because I need to be able to click a button/menu item with the mouse, not all of my browsers come with keyboard. When in full screen, I need the context menu to get back. That's why this extension adds itself in the right-menu also. And that's it.

🛠 OPTIONS

To change the default settings, simply right-click on the extension icon and select "Options". On the settings page, you can change the icon to a different color  (to match your Chrome theme or simply because you don't like the default black color) or even set your own icon.

🔒 PERMISSIONS

Rest assured, this extension doesn't require any special or risky permissions. The only permissions it needs are "contextMenu" and "storage." It doesn't access your data or sites. Its sole purpose is to add the buttons to the toolbar and context menu while saving the selected icon in local storage.                    

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

नाम Full Screen Full Screen
ID joddbgdiaecgbenoeloffehlpclnppfa
आधिकारिक URL https://chromewebstore.google.com/detail/full-screen/joddbgdiaecgbenoeloffehlpclnppfa
विवरण Add fullscreen button to the Chrome toolbar and to the context (right-click) menu
फ़ाइल का आकार 22.7 KB
स्थापना संख्या 458
वर्तमान संस्करण 2.0
अंतिम अपडेट 2023-09-14
प्रकाशन तिथि 2019-10-09
रेटिंग 3.63/5 कुल 8 रेटिंग्स
डेवलपर https://openaddons.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://openaddons.com/
सहायता पृष्ठ URL https://openaddons.com/full-screen-button/
गोपनीयता नीति पृष्ठ URL https://openaddons.com/privacy
समर्थित भाषाएँ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "version": "2.0",
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "16": "icon.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "",
        "default_icon": {
            "16": "icon.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        }
    },
    "options_ui": {
        "page": "settings.html"
    }
}