Tweet Grabber
This extension allows you to copy tweets to your clipboard.
Was ist Tweet Grabber?
Tweet Grabber ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to copy tweets to your clipboard.".
Tweet Grabber-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tweet Grabber-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Adds a button to the Twitter UI to copy a tweet to your clipboard as HTML. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jfkhmnmpppgaempelmhbicaelhnclkjc |
| Offizielle URL | https://chromewebstore.google.com/detail/tweet-grabber/jfkhmnmpppgaempelmhbicaelhnclkjc |
| Beschreibung | This extension allows you to copy tweets to your clipboard. |
| Dateigröße | 196 KB |
| Installationsanzahl | 40 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2017-12-04 |
| Veröffentlichungsdatum | 2017-12-04 |
| Entwickler | Unknown |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
}
]
} | |