Virtel WebAccess Extender
Enables Virtel WebAccess advanced features and OS integration.
Virtel WebAccess Extender란 무엇입니까?
Virtel WebAccess Extender은(는) [email protected]에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables Virtel WebAccess advanced features and OS integration."입니다.
확장 프로그램 스크린샷
Virtel WebAccess Extender 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Chrome extension is intended for "Virtel Web Access" users (compatible with Chrome version 20 or more). It grants access to the System Clipboard from Virtel web-pages (via the cut/copy/paste commands), so that data can be shared between Chrome and other applications. In order to have the system-wide copy/paste feature activated, you have to configure the access rights using the extension's options panel. The domain URLs can end with a wildcard (the '*' character can only appear at the very end of the URL). If there is no wildcard, then the provided URL must match exactly the expected domain URL. Examples of valid URLs: https://localhost:8080 https://127.0.0.1:8080 http://127.0.0.1:* http://192.168.0.*
확장 프로그램 기본 정보
이름 | |
ID | fidkdjmpgoimefkibgbljlfkicpcpkpl |
공식 URL | https://chromewebstore.google.com/detail/virtel-webaccess-extender/fidkdjmpgoimefkibgbljlfkicpcpkpl |
설명 | Enables Virtel WebAccess advanced features and OS integration. |
파일 크기 | 19.23 KB |
설치 횟수 | 12,697 |
현재 버전 | 40.0 |
최근 업데이트 | 2017-07-19 |
출시 날짜 | 2017-07-19 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.syspertec.com |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Virtel WebAccess Extender", "description": "Enables Virtel WebAccess advanced features and OS integration.", "version": "40.0", "manifest_version": 2, "minimum_chrome_version": "30.0", "options_page": "options\/options.html", "icons": { "64": "icon_64.png" }, "background": { "scripts": [ "main.js" ], "persistent": false }, "content_security_policy": "script-src 'self' ; object-src 'self' ", "permissions": [ "clipboardRead", "clipboardWrite", "storage" ], "content_scripts": [ { "run_at": "document_start", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "worker.js", "settings.js" ] } ] } |