Twitter & FB Capture

Capture screenshots of Twitter and Facebook posts.

Twitter & FB Capture là gì?

Twitter & FB Capture là một tiện ích mở rộng Chrome được phát triển bởi Shang Liang, và tính năng chính của nó là "Capture screenshots of Twitter and Facebook posts.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Twitter & FB Capture

Tải xuống các tệp mở rộng Twitter & FB Capture dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Screen grab a post on Twitter and Facebook. 
After installation, go and visit a Twitter page e.g. https://twitter.com/googlecloud/status/1285547816564269057
Right click at the center post and the a button will appear in the context menu "Capture"
Click at it capture the image and you can paste it onto your keynote or powerpoint slides                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitter & FB Capture Twitter & FB Capture
ID jnajainpealobgghniooofdcahcflnag
URL Chính Thức https://chromewebstore.google.com/detail/twitter-fb-capture/jnajainpealobgghniooofdcahcflnag
Mô tả Capture screenshots of Twitter and Facebook posts.
Kích Thước Tệp 42.8 KB
Số Lần Cài Đặt 189
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2020-07-24
Ngày Phát Hành 2020-07-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Shang Liang
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter & FB Capture",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Capture screenshots of Twitter and Facebook posts.",
    "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:\/\/www.facebook.com\/*",
        "https:\/\/twitter.com\/*",
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "injection.css"
    ]
}