Twitter - Add Instant Reply
This extension adds an instant reply button, which you can set after clicking the extension's icon.
Τι είναι το Twitter - Add Instant Reply;
Το Twitter - Add Instant Reply είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον bongosart, και η κύρια λειτουργία του είναι "This extension adds an instant reply button, which you can set after clicking the extension's icon.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Twitter - Add Instant Reply
Λήψη αρχείων επέκτασης Twitter - Add Instant Reply σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | fokpchplhnamghfkfekgefcjfinmlglg |
| Επίσημο URL | https://chromewebstore.google.com/detail/twitter-add-instant-reply/fokpchplhnamghfkfekgefcjfinmlglg |
| Περιγραφή | This extension adds an instant reply button, which you can set after clicking the extension's icon. |
| Μέγεθος Αρχείου | 38.56 KB |
| Αριθμός Εγκαταστάσεων | 25 |
| Τρέχουσα Έκδοση | 1.0 |
| Τελευταία Ενημέρωση | 2018-06-20 |
| Ημερομηνία Δημοσίευσης | 2018-06-20 |
| Προγραμματιστής | bongosart |
| Τύπος Πληρωμής | free |
| Υποστηριζόμενες Γλώσσες | 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"
}
]
} | |