Simple Page Screenshot

Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.

ما هو Simple Page Screenshot؟

Simple Page Screenshot هو إضافة Chrome تم تطويرها بواسطة paradoxxxzero، والميزة الرئيسية لها هي "Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.".

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

screenshot
screenshot

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

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

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

                        Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.


Right click on the image to save it or copy the datu URL with Copy image URL                    

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

الاسم Simple Page Screenshot Simple Page Screenshot
ID llhehkgnfcfjbpknaljplknmimhggbpa
عنوان URL الرسمي https://chrome.google.com/webstore/detail/simple-page-screenshot/llhehkgnfcfjbpknaljplknmimhggbpa
الوصف Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.
حجم الملف 8.71 KB
عدد التثبيتات 255
النسخة الحالية 1.0.0
آخر تحديث 2014-04-04
تاريخ النشر 2014-04-04
تقييم 1.00/5 مجموع تقييمات 1
المطور paradoxxxzero
نوع الدفع free
موقع الإضافة https://github.com/paradoxxxzero/simple_page_screenshot
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Page Screenshot",
    "version": "1.0.0",
    "author": "Florian Mounier - paradoxxxzero",
    "homepage_url": "https:\/\/github.com\/paradoxxxzero\/simple_page_screenshot",
    "description": "Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        ""
    ]
}