Vettore.Extension

Vettore Rinascimento srl Chrome extension

Vettore.Extension란 무엇입니까?

Vettore.Extension은(는) Vettore Rinascimento Srl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Vettore Rinascimento srl Chrome extension"입니다.

확장 프로그램 스크린샷

screenshot

Vettore.Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A companion extension for the web application Vettore.Medical (https://www.vettoremedical.it/).
Vettore.Extension provides cache cleaning in two ways:

- by clicking on the extension icon itself (on every site)
- automatic (only for *.vettoreweb.it sites), when a new Vettore.Medical version is available

If the extension in not installed, Vettore.Medical asks the user to install it with an alert.

Vettore.Extension also provides system performance informations (cpu, memory and opened tabs) so that Vettore.Medical can detect if there are performance issues and inform the user.

Vettore.Extension also provide some window handling calls, used by Vettore.Medical developers: the first one closes current tab; the other one opens a broser window in another monitor                    

확장 프로그램 기본 정보

이름 Vettore.Extension Vettore.Extension
ID alhidfgffpaibannkgaejfphakdabgdc
공식 URL https://chromewebstore.google.com/detail/vettoreextension/alhidfgffpaibannkgaejfphakdabgdc
설명 Vettore Rinascimento srl Chrome extension
파일 크기 46.84 KB
설치 횟수 2,024
현재 버전 1.1.0
최근 업데이트 2022-02-12
출시 날짜 2021-10-01
개발자 Vettore Rinascimento Srl
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vettore.Extension",
    "description": "Vettore Rinascimento srl Chrome extension",
    "version": "1.1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "browsingData",
        "system.memory",
        "system.cpu",
        "system.display"
    ],
    "action": [],
    "icons": {
        "16": "\/images\/16x16.png",
        "32": "\/images\/32x32.png",
        "48": "\/images\/48x48.png",
        "128": "\/images\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.vettoreweb.it\/*"
            ],
            "js": [
                "lib\/jquery-3.6.0.min.js",
                "lib\/js.cookie.min.js",
                "injectedScript.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.vettoreweb.it\/*"
        ]
    }
}