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 |
官方網址 | 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" ] } ] } |