Twitter & FB Capture

Capture screenshots of Twitter and Facebook posts.

Qu'est-ce que Twitter & FB Capture ?

Twitter & FB Capture est une extension Chrome développée par Shang Liang, et sa fonction principale est "Capture screenshots of Twitter and Facebook posts.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Twitter & FB Capture

Téléchargez les fichiers d'extension Twitter & FB Capture au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Twitter & FB Capture Twitter & FB Capture
ID jnajainpealobgghniooofdcahcflnag
URL Officiel https://chromewebstore.google.com/detail/twitter-fb-capture/jnajainpealobgghniooofdcahcflnag
Description Capture screenshots of Twitter and Facebook posts.
Taille du Fichier 42.8 KB
Nombre d'Installations 189
Version Actuelle 0.0.3
Dernière Mise à Jour 2020-07-24
Date de Publication 2020-07-24
Évaluation 5.00/5 Total 1 Évaluations
Développeur Shang Liang
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}