Snapper

An easy to use extension for taking screenshots in the browser

Snapperคืออะไร?

Snapper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย timiiidev และคุณลักษณะหลักของมันคือ "An easy to use extension for taking screenshots in the browser"

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

screenshot
screenshot
screenshot

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

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

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

                        Easily screenshot how much of your current page as YOU want, for free!

If you want to choose how much of the current page you want to screenshot, this is the right extension for you.

Use the extension by clicking on the icon in the top right of Chrome. You can see a selection of options for the area you want to screenshot:

- Custom Area: choose your own area to screenshot
- Visible Content: screenshot only the content currently visible
- Full Page: screenshot the whole website

Tip: If none of the options work right after adding the extension to chrome, refresh the website you want to screenshot and it should work as expected afterwards.

After the screenshot has been taken, you will be redirected to a new tab showcasing the created screenshot with an option to download the image as a PNG.

The extension is minimalistic and very easy to use without bloat, ads or unnecessary permissions.

The whole extension is created by an independent developer. You can view the open source project on GitHub: https://github.com/timii/Snapper                    

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

ชื่อ Snapper Snapper
ID opchjelombkjeoleoaganhaofjgjnbod
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/snapper/opchjelombkjeoleoaganhaofjgjnbod
คำอธิบาย An easy to use extension for taking screenshots in the browser
ขนาดไฟล์ 34.71 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-08-19
วันที่เผยแพร่ 2022-08-01
ผู้พัฒนา timiiidev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Snapper",
    "description": "An easy to use extension for taking screenshots in the browser",
    "version": "1.0",
    "icons": {
        "16": "images\/icon_old.png",
        "32": "images\/icon30.png",
        "48": "images\/icon40.png",
        "128": "images\/icon80.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content-custom-area.js"
            ],
            "css": [
                "content-custom-area.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content-full-page.js"
            ],
            "css": [
                "content-full-page.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "images\/icon_old.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ]
}