Fakturabank screen capture extension
Capture full-screen or specific application's screen on fakturabank.no!
什麼是Fakturabank screen capture extension?
Fakturabank screen capture extension是由https://fakturabank.no開發的Chrome擴展程式,該擴展的主要功能是“Capture full-screen or specific application's screen on fakturabank.no!”。
擴展截圖
下載Fakturabank screen capture extension擴展crx文件
下載Fakturabank screen capture extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
While talking with fakturabank livesupport share your full-screen or specific application. 擴展基本資訊
| 名稱 | |
| ID | dpcfdlcdiikjlgmniaaemkjjclecbbhm |
| 官方網址 | https://chromewebstore.google.com/detail/fakturabank-screen-captur/dpcfdlcdiikjlgmniaaemkjjclecbbhm |
| 簡介 | Capture full-screen or specific application's screen on fakturabank.no! |
| 檔案大小 | 7.71 KB |
| 安裝次數 | 34 |
| 目前版本 | 1.0 |
| 更新時間 | 2023-01-03 |
| 上架時間 | 2017-01-24 |
| 開發者 | https://fakturabank.no |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://www.fakturabank.no |
| 隱私政策頁面URL | https://www.fakturabank.no/policy |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Fakturabank screen capture extension",
"author": "Fakturabank.no",
"version": "1.0",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "Capture full-screen or specific application's screen on fakturabank.no!",
"homepage_url": "https:\/\/fakturabank.no\/",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"https:\/\/*.fakturabank.no\/*"
]
}
],
"icons": {
"48": "icon.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
} | |