Fakturabank screen capture extension
Capture full-screen or specific application's screen on fakturabank.no!
ما هو Fakturabank screen capture extension؟
Fakturabank screen capture extension هو إضافة Chrome تم تطويرها بواسطة https://fakturabank.no، والميزة الرئيسية لها هي "Capture full-screen or specific application's screen on fakturabank.no!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Fakturabank screen capture extension
قم بتنزيل ملفات الامتداد Fakturabank screen capture extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
While talking with fakturabank livesupport share your full-screen or specific application. معلومات أساسية عن التمديد
| الاسم | |
| ID | dpcfdlcdiikjlgmniaaemkjjclecbbhm |
| عنوان URL الرسمي | 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 |
| عنوان صفحة سياسة الخصوصية | 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"
]
} | |