Fullscreen OdooServer Tabs

Show browser tabs in fullscreen mode for OdooServer

Fullscreen OdooServer Tabs क्या है?

Fullscreen OdooServer Tabs Fenix Engineering Solutions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show browser tabs in fullscreen mode for OdooServer"।

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

screenshot

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

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

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

                        The extension will show the open tabs in the browser window when the web is in fullscreeen. I need to be able to change between my ERP tabs when working in fullscreen mode, so, y created that extension for internal use (but have to publish it so I can install on our Windows computers).

I do not recommend you to install it, because it will be useless to you, it only will work on our Odoo server domain.

The extension does not collect nor store data of any type.                    

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

नाम Fullscreen OdooServer Tabs Fullscreen OdooServer Tabs
ID lkcjlnlpapaaleecfphjligpbgakiomm
आधिकारिक URL https://chromewebstore.google.com/detail/fullscreen-odooserver-tab/lkcjlnlpapaaleecfphjligpbgakiomm
विवरण Show browser tabs in fullscreen mode for OdooServer
फ़ाइल का आकार 14.64 KB
स्थापना संख्या 41
वर्तमान संस्करण 1.2.18
अंतिम अपडेट 2020-06-27
प्रकाशन तिथि 2020-06-27
डेवलपर Fenix Engineering Solutions
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fullscreen OdooServer Tabs",
    "version": "1.2.18",
    "description": "Show browser tabs in fullscreen mode for OdooServer",
    "manifest_version": 2,
    "icons": {
        "16": "images\/folder-plus-16.png",
        "32": "images\/folder-plus-32.png",
        "48": "images\/folder-plus-48.png",
        "128": "images\/folder-plus-128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/*.odooserver.net\/*"
    ],
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/*.odooserver.net\/*"
            ],
            "css": [
                "css\/chrome-tabs.css",
                "css\/chrome-tabs-dark-theme.css"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}