Fullscreen OdooServer Tabs
Show browser tabs in fullscreen mode for OdooServer
Fullscreen OdooServer Tabsとは何ですか?
Fullscreen OdooServer TabsはFenix Engineering Solutionsによって開発されたChromeの拡張機能で、その主な機能は「Show browser tabs in fullscreen mode for OdooServer」です。
拡張機能のスクリーンショット
Fullscreen OdooServer Tabs拡張機能のCRXファイルをダウンロード
Fullscreen OdooServer Tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" ] } ] } |