Twitter - Add Instant Reply
This extension adds an instant reply button, which you can set after clicking the extension's icon.
Was ist Twitter - Add Instant Reply?
Twitter - Add Instant Reply ist eine Chrome-Erweiterung, die von bongosart entwickelt wurde, und ihr Hauptmerkmal ist "This extension adds an instant reply button, which you can set after clicking the extension's icon.".
Erweiterungsscreenshots
Twitter - Add Instant Reply-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitter - Add Instant Reply-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
This extension makes it a bit easier to reply to tweets with a default reply.
Go to twitter.com and and click the icon. Add the text you want to use as a default reply and click save.
Open the tweet you want to answer to. You will see that a button is added to do an instant reply. Click the button and your default reply will be added to the reply section. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fokpchplhnamghfkfekgefcjfinmlglg |
| Offizielle URL | https://chromewebstore.google.com/detail/twitter-add-instant-reply/fokpchplhnamghfkfekgefcjfinmlglg |
| Beschreibung | This extension adds an instant reply button, which you can set after clicking the extension's icon. |
| Dateigröße | 38.56 KB |
| Installationsanzahl | 25 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2018-06-20 |
| Veröffentlichungsdatum | 2018-06-20 |
| Entwickler | bongosart |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Twitter - Add Instant Reply",
"description": "This extension adds an instant reply button, which you can set after clicking the extension's icon.",
"version": "1.0",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Click to edit your reply message",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"https:\/\/ajax.googleapis.com\/",
"storage",
"tabs"
],
"content_scripts": [
{
"js": [
"jquery.min.js",
"contentScript.js",
"addReplyButtonToScreen.js"
],
"matches": [
"https:\/\/twitter.com\/*"
],
"run_at": "document_end"
}
]
} | |