Screen Capture and download

Capture current page and download the image.

ما هو Screen Capture and download؟

Screen Capture and download هو إضافة Chrome تم تطويرها بواسطة extensioncreatorsllc، والميزة الرئيسية لها هي "Capture current page and download the image.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Screen Capture and download

قم بتنزيل ملفات الامتداد Screen Capture and download بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This chrome extension allows user to take the screen shot of current page in chrome and download it as a image.                    

معلومات أساسية عن التمديد

الاسم Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
عنوان URL الرسمي https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
الوصف Capture current page and download the image.
حجم الملف 157 KB
عدد التثبيتات 6,726
النسخة الحالية 1.5
آخر تحديث 2019-08-27
تاريخ النشر 2019-08-27
تقييم 4.52/5 مجموع تقييمات 25
المطور extensioncreatorsllc
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://bornsecret.com/privacy.html
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Capture and download",
    "version": "1.5",
    "description": "Capture current page and download the image.",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content1.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Capture screen and download!",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon128.png",
        "16": "icon.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "permissions": [
        "activeTab",
        "downloads",
        ""
    ],
    "manifest_version": 2
}