Tweet Grabber
This extension allows you to copy tweets to your clipboard.
Wat is Tweet Grabber?
Tweet Grabber is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension allows you to copy tweets to your clipboard.".
Download het CRX-bestand van de extensie Tweet Grabber
Download Tweet Grabber-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
                        Adds a button to the Twitter UI to copy a tweet to your clipboard as HTML.                     Basisinformatie over de Extensie
| Naam |   |  
| ID | jfkhmnmpppgaempelmhbicaelhnclkjc | 
| Officiële URL | https://chromewebstore.google.com/detail/tweet-grabber/jfkhmnmpppgaempelmhbicaelhnclkjc | 
| Beschrijving | This extension allows you to copy tweets to your clipboard. | 
| Bestandsgrootte | 196 KB | 
| Aantal Installaties | 40 | 
| Huidige Versie | 1.0 | 
| Laatst Bijgewerkt | 2017-12-04 | 
| Publicatiedatum | 2017-12-04 | 
| Ontwikkelaar | Unknown | 
| Betalingswijze | free | 
| Ondersteunde Talen | en-GB | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tweet Grabber",
    "description": "This extension allows you to copy tweets to your clipboard.",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "tweet-grabber.js"
            ],
            "css": [
                "tweet-grabber.css"
            ]
        }
    ]
}  |  |