Capture Tweet

Make a screen grab of a tweet. Right click at a tweet and select the "Capture" option.

Capture Tweetคืออะไร?

Capture Tweet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shang Liang และคุณลักษณะหลักของมันคือ "Make a screen grab of a tweet. Right click at a tweet and select the "Capture" option."

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

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

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

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

                        *UPDATE 13-04-2021*
Added a bit more delay to wait for video/image to load. Sometimes the screen capture happens too early and get a blank image.

*UPDATE 09-04-2021*
Action trigger point changed to the context menu. It's a lot more convenient now. Right click at a tweet to capture.

*UPDATE 15-07-2020*
Made the tweet narrower so the text will be bigger and easier to read, matching with the design on iOS app.

*UPDATE 14-07-2020*
Added function to support tweets which are too long to fit into the screen. The extension will scroll the page down and capture the remaining parts.

After installation, visit a single tweet page, e.g. https://twitter.com/Twitter/status/1274087687469715457
Remember to refresh existing opened twitter pages to activate the extension.

Click at the extension icon on the address bar.
An image will be generated and saved into your clipboard.
You can paste it into Google Slides, Powerpoint or Photoshop etc.

1 known issue: if the screen capture an empty white image, just try again will resolve the problem. (This happens when images load slower than the 0.3 seconds delay)                    

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

ชื่อ Capture Tweet Capture Tweet
ID nflafikcccfapjdillnmmonhblaggndl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/capture-tweet/nflafikcccfapjdillnmmonhblaggndl
คำอธิบาย Make a screen grab of a tweet. Right click at a tweet and select the "Capture" option.
ขนาดไฟล์ 40.27 KB
จำนวนการติดตั้ง 350
เวอร์ชันปัจจุบัน 0.0.6
อัปเดตครั้งล่าสุด 2021-04-14
วันที่เผยแพร่ 2020-07-15
คะแนน 3.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Shang Liang
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Capture Tweet",
    "version": "0.0.6",
    "manifest_version": 2,
    "description": "Make a screen grab of a tweet. Right click at a tweet and select the \"Capture\" option.",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/twitter.com\/*",
        "contextMenus",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}