Tweet Grabber
This extension allows you to copy tweets to your clipboard.
Cos'è Tweet Grabber?
Tweet Grabber è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension allows you to copy tweets to your clipboard.".
Scarica il file CRX dell'estensione Tweet Grabber
Scarica i file di estensione Tweet Grabber 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
Adds a button to the Twitter UI to copy a tweet to your clipboard as HTML.
Informazioni di Base sull'Estensione
Nome | Tweet Grabber |
ID | jfkhmnmpppgaempelmhbicaelhnclkjc |
URL Ufficiale | https://chromewebstore.google.com/detail/tweet-grabber/jfkhmnmpppgaempelmhbicaelhnclkjc |
Descrizione | This extension allows you to copy tweets to your clipboard. |
Dimensione del File | 196 KB |
Conteggio Installazioni | 40 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2017-12-04 |
Data di Pubblicazione | 2017-12-04 |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |