Tweet Grabber
This extension allows you to copy tweets to your clipboard.
Qu'est-ce que Tweet Grabber ?
Tweet Grabber est une extension Chrome développée par Unknown, et sa fonction principale est "This extension allows you to copy tweets to your clipboard.".
Télécharger le fichier CRX de l'extension Tweet Grabber
Téléchargez les fichiers d'extension Tweet Grabber 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
Adds a button to the Twitter UI to copy a tweet to your clipboard as HTML.
Informations de Base sur l'Extension
Nom | Tweet Grabber |
ID | jfkhmnmpppgaempelmhbicaelhnclkjc |
URL Officiel | https://chromewebstore.google.com/detail/tweet-grabber/jfkhmnmpppgaempelmhbicaelhnclkjc |
Description | This extension allows you to copy tweets to your clipboard. |
Taille du Fichier | 196 KB |
Nombre d'Installations | 40 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2017-12-04 |
Date de Publication | 2017-12-04 |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |