Twitter & FB Capture
Capture screenshots of Twitter and Facebook posts.
What is Twitter & FB Capture?
Twitter & FB Capture is a Chrome extension developed by Shang Liang, and its main feature is "Capture screenshots of Twitter and Facebook posts.".
Extension Screenshots
Download Twitter & FB Capture Extension CRX File
Download Twitter & FB Capture extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Twitter & FB Capture |
ID | jnajainpealobgghniooofdcahcflnag |
Official URL | https://chromewebstore.google.com/detail/twitter-fb-capture/jnajainpealobgghniooofdcahcflnag |
Description | Capture screenshots of Twitter and Facebook posts. |
File Size | 42.8 KB |
Installation Count | 189 |
Current Version | 0.0.3 |
Last Updated | 2020-07-24 |
Publish Date | 2020-07-24 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Shang Liang |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |