Screenshot Extension (Open Source)

A browser extension that takes screenshots

ما هو Screenshot Extension (Open Source)؟

Screenshot Extension (Open Source) هو إضافة Chrome تم تطويرها بواسطة Michael، والميزة الرئيسية لها هي "A browser extension that takes screenshots".

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

screenshot

تحميل ملف CRX للإضافة Screenshot Extension (Open Source)

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

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

                        A browser extension that takes full-page or partial screenshots!

- Hold the Option/Alt key and drag the mouse to create partial screenshots.
- Click the icon to create full-page screenshots.

Source code: https://github.com/lxieyang/screenshot-extension                    

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

الاسم Screenshot Extension (Open Source) Screenshot Extension (Open Source)
ID hmkbkbpdnembpeadgpcmjekihjmckdjh
عنوان URL الرسمي https://chromewebstore.google.com/detail/screenshot-extension-open/hmkbkbpdnembpeadgpcmjekihjmckdjh
الوصف A browser extension that takes screenshots
حجم الملف 58.05 KB
عدد التثبيتات 149
النسخة الحالية 1.0.0
آخر تحديث 2020-11-20
تاريخ النشر 2020-11-18
المطور Michael
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/lxieyang/chrome-extension-boilerplate-react
عنوان صفحة المساعدة https://github.com/lxieyang/chrome-extension-boilerplate-react
عنوان صفحة سياسة الخصوصية https://github.com/lxieyang/lxieyang.github.io/wiki/Chrome-Extension-Privacy-Policy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A browser extension that takes screenshots",
    "version": "1.0.0",
    "name": "Screenshot Extension (Open Source)",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "icon-34.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "downloads",
        "",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "cross-32.png"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}