Twitter & FB Capture
Capture screenshots of Twitter and Facebook posts.
Cos'è Twitter & FB Capture?
Twitter & FB Capture è un'estensione di Chrome sviluppata da Shang Liang, e la sua funzione principale è "Capture screenshots of Twitter and Facebook posts.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter & FB Capture
Scarica i file di estensione Twitter & FB Capture in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | jnajainpealobgghniooofdcahcflnag |
| URL Ufficiale | https://chromewebstore.google.com/detail/twitter-fb-capture/jnajainpealobgghniooofdcahcflnag |
| Descrizione | Capture screenshots of Twitter and Facebook posts. |
| Dimensione del File | 42.8 KB |
| Conteggio Installazioni | 189 |
| Versione Corrente | 0.0.3 |
| Ultimo Aggiornamento | 2020-07-24 |
| Data di Pubblicazione | 2020-07-24 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | Shang Liang |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |