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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } ] } |