Lightweight Screenshot

Take screenshots. Also works for full page and custom-size screenshots.

ما هو Lightweight Screenshot؟

Lightweight Screenshot هو إضافة Chrome تم تطويرها بواسطة Adam Feor، والميزة الرئيسية لها هي "Take screenshots. Also works for full page and custom-size screenshots.".

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

screenshot

تحميل ملف CRX للإضافة Lightweight Screenshot

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

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

                        A simple screenshot extension for Chrome. Supports taking screenshots of the current window, of an entire page (scrolling) and of a custom area.                    

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

الاسم Lightweight Screenshot Lightweight Screenshot
ID eapeifgbfommamnclhbppicejicnpooc
عنوان URL الرسمي https://chromewebstore.google.com/detail/lightweight-screenshot/eapeifgbfommamnclhbppicejicnpooc
الوصف Take screenshots. Also works for full page and custom-size screenshots.
حجم الملف 39.4 KB
عدد التثبيتات 478
النسخة الحالية 1.1
آخر تحديث 2018-04-29
تاريخ النشر 2018-04-29
تقييم 4.00/5 مجموع تقييمات 5
المطور Adam Feor
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lightweight Screenshot",
    "description": "Take screenshots. Also works for full page and custom-size screenshots.",
    "version": "1.1",
    "icons": {
        "19": "images\/monitoriconsmall.png",
        "48": "images\/monitoricon48.png",
        "128": "images\/monitoricon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/cus.png",
        "image\/vis.png",
        "images\/full.png",
        "images\/check.png",
        "images\/cross.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/monitoriconsmall.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "",
        "downloads"
    ]
}