Fullscreen OdooServer Tabs
Show browser tabs in fullscreen mode for OdooServer
Fullscreen OdooServer Tabsคืออะไร?
Fullscreen OdooServer Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fenix Engineering Solutions และคุณลักษณะหลักของมันคือ "Show browser tabs in fullscreen mode for OdooServer"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fullscreen OdooServer Tabs
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } ] } |