Virtel WebAccess Extender
Enables Virtel WebAccess advanced features and OS integration.
Virtel WebAccess Extenderคืออะไร?
Virtel WebAccess Extender เป็นส่วนขยายของ Chrome ที่พัฒนาโดย [email protected] และคุณลักษณะหลักของมันคือ "Enables Virtel WebAccess advanced features and OS integration."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Virtel WebAccess Extender
ดาวน์โหลดไฟล์ส่วนขยาย Virtel WebAccess Extender ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } ] } |