Quick Snip

Browse web and capture tabs you like, easy and quick.

Quick Snipคืออะไร?

Quick Snip เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Frooty Studios และคุณลักษณะหลักของมันคือ "Browse web and capture tabs you like, easy and quick."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Quick Snip

ดาวน์โหลดไฟล์ส่วนขยาย Quick Snip ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Quick tab capture tool.

* Take screenshot of full tab.
* Capture specific region screenshot.

Once captured! you're screenshot will be ready to be used by pasting it any where in your documents.

*****Version 1.1*****
*Added shortcuts to capture screen
On windows 
*Full screen - Ctrl+Shift+1
*Area capture - Ctrl+Shift+2
On mac
*Full screen - Command+shift+1
*Area capture - Command+shift+2

*notifications on browser tab
*Bug fixes

*****Version 1.0*****
*Updated extension with the latest extension development environment manifest v3.
*Bug fixes                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Quick Snip Quick Snip
ID gjjhmphibjpmjbeghgjgecennojdohgc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quick-snip/gjjhmphibjpmjbeghgjgecennojdohgc
คำอธิบาย Browse web and capture tabs you like, easy and quick.
ขนาดไฟล์ 903 KB
จำนวนการติดตั้ง 2,000
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2023-03-01
วันที่เผยแพร่ 2022-01-10
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Frooty Studios
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.1.0",
    "name": "Quick Snip",
    "icons": {
        "32": "assets\/icons\/32.png",
        "64": "assets\/icons\/64.png"
    },
    "action": {
        "default_icon": "assets\/icons\/64.png",
        "default_popup": "\/view\/popup.html",
        "default_title": "Take a Screenshot"
    },
    "description": "Browse web and capture tabs you like, easy and quick.",
    "permissions": [
        "activeTab",
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "utility\/notification.js",
                "lib\/customLib\/urlValidator.js",
                "content\/content_script.js"
            ],
            "css": [
                "styles\/extraContent.css"
            ]
        }
    ],
    "background": {
        "service_worker": "mainServiceWorker.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/icons\/32.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "commands": {
        "full_screenshot": {
            "suggested_key": {
                "windows": "Ctrl+Shift+1",
                "mac": "Command+Shift+1",
                "linux": "Ctrl+Shift+1"
            },
            "description": "captures full screenshot"
        },
        "region_screenshot": {
            "suggested_key": {
                "windows": "Ctrl+Shift+2",
                "mac": "Command+Shift+2",
                "linux": "Ctrl+Shift+2"
            },
            "description": "captures region screenshot"
        }
    }
}