Screen Capture

Capture visible content of a tab, a region of a web page, or the whole page as a PNG image.

Screen Captureคืออะไร?

Screen Capture เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Adrià Vilanova Martínez (avm99963) และคุณลักษณะหลักของมันคือ "Capture visible content of a tab, a region of a web page, or the whole page as a PNG image."

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

screenshot

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

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

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

                        "Screen Capture" is a fork maintained by Adrià Vilanova Martínez (aka @avm99963) of the original open source extension "Screen Capture (by Google)".

NOTE: All the issues the extension had in the past have been fixed in the newest version. Now everything should work correctly.

It allows to perform screenshots of the visible part of the page, a specific region or the entire page. Afterward, it also allows to edit the picture and save it.

Unfortunately, the following features have been removed because of several reasons:

- The feature to share screenshots via social networks has been removed (because it stopped working). I don't have plans to bring this back.
- The feature to use keyboard shortcuts to take screenshots (because it was implemented in a way which is no longer permitted in the Chrome Web Store). I have plans to bring this back in the future.

If you want to work on any of these issues, please ping me and submit the updated code in one of the following places:
- Submit a change at Gerrit (preferred, but if you're not used to Gerrit, you can submit it to GitHub): https://gerrit.avm99963.com/plugins/gitiles/screen-capture/
- Submit a pull request at GitHub: https://github.com/avm99963/screen-capture

Also, bug reports are welcome at https://s.iavm.xyz/screen-capture-new-issue (see a list of issues at https://s.iavm.xyz/screen-capture-issues), and pull requests/changes are welcome both at Gerrit and GitHub.                    

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

ชื่อ Screen Capture Screen Capture
ID ghihpjhpgdepnohngpgfcmcijmkggpaf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/screen-capture/ghihpjhpgdepnohngpgfcmcijmkggpaf
คำอธิบาย Capture visible content of a tab, a region of a web page, or the whole page as a PNG image.
ขนาดไฟล์ 102 KB
จำนวนการติดตั้ง 160,009
เวอร์ชันปัจจุบัน 6.0.3-stable
อัปเดตครั้งล่าสุด 2024-02-08
วันที่เผยแพร่ 2018-09-18
คะแนน 2.09/5 รวมทั้งหมด 156 คะแนน
ผู้พัฒนา Adrià Vilanova Martínez (avm99963)
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/avm99963/screen-capture
URL หน้าช่วยเหลือ https://s.iavm.xyz/screen-capture-new-issue
URL หน้านโยบายความเป็นส่วนตัว https://docs.google.com/document/d/e/2PACX-1vQqZVpbT2k8U1tn1PdmDaAWnfMpLFIIeAAxiN-J-p7atXSPhhjVemIe5z5TgyT7llpgq1OAitP1TXB5/pub
ภาษาที่รองรับ de,en,fr,pl,ru,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "6.0.3",
    "version_name": "6.0.3-stable",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/icon_19.png",
        "default_title": "__MSG_default_title__",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "default_locale": "en",
    "icons": {
        "16": "images\/icon_16.png",
        "19": "images\/icon_19.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2,
    "options_page": "options.html",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "web_accessible_resources": [
        "js\/page_context.js",
        "style.css"
    ]
}