Twitter & FB Capture
Capture screenshots of Twitter and Facebook posts.
什麼是Twitter & FB Capture?
Twitter & FB Capture是由Shang Liang開發的Chrome擴展程式,該擴展的主要功能是“Capture screenshots of Twitter and Facebook posts.”。
擴展截圖
下載Twitter & FB Capture擴展crx文件
下載Twitter & FB Capture擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | jnajainpealobgghniooofdcahcflnag |
| 官方網址 | https://chromewebstore.google.com/detail/twitter-fb-capture/jnajainpealobgghniooofdcahcflnag |
| 簡介 | Capture screenshots of Twitter and Facebook posts. |
| 檔案大小 | 42.8 KB |
| 安裝次數 | 189 |
| 目前版本 | 0.0.3 |
| 更新時間 | 2020-07-24 |
| 上架時間 | 2020-07-24 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | Shang Liang |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | 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"
]
} | |