Fakturabank screen capture extension
Capture full-screen or specific application's screen on fakturabank.no!
What is Fakturabank screen capture extension?
Fakturabank screen capture extension is a Chrome extension developed by https://fakturabank.no, and its main feature is "Capture full-screen or specific application's screen on fakturabank.no!".
Extension Screenshots
Download Fakturabank screen capture extension Extension CRX File
Download Fakturabank screen capture extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
While talking with fakturabank livesupport share your full-screen or specific application.
Extension Basic Information
Name | Fakturabank screen capture extension |
ID | dpcfdlcdiikjlgmniaaemkjjclecbbhm |
Official URL | https://chromewebstore.google.com/detail/fakturabank-screen-captur/dpcfdlcdiikjlgmniaaemkjjclecbbhm |
Description | Capture full-screen or specific application's screen on fakturabank.no! |
File Size | 7.71 KB |
Installation Count | 34 |
Current Version | 1.0 |
Last Updated | 2023-01-03 |
Publish Date | 2017-01-24 |
Developer | https://fakturabank.no |
[email protected] | |
Payment Type | free |
Extension Website | https://www.fakturabank.no |
Privacy Policy Page URL | https://www.fakturabank.no/policy |
Supported Languages | 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" ] } |