Tweet Better
Enables single click 'Quote' and 'Email' functionality on Twitter.com.
Τι είναι το Tweet Better;
Το Tweet Better είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://pernalin.com, και η κύρια λειτουργία του είναι "Enables single click 'Quote' and 'Email' functionality on Twitter.com.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Tweet Better
Λήψη αρχείων επέκτασης Tweet Better σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Do you use Twitter.com but wish it would allow you to quote a tweet? Have you been frustrated with the Retweet link? This extension enables single click 'Quote' functionality on Twitter.com. Click 'Quote' to add your thoughts and your own flavor to Tweets before sharing. After installing, visit twitter.com and hover on any tweet to view the new functionality! Version 2.0 ------------------- A long overdue update. Fixed Quote functionality for the current Twitter interface. Version 1.1.5 ------------------- Minor defect fix of an error on twitter pages without tweets, such as the profile page, twitter settings etc. Version 1.1 ------------------- A new options page let's you set your quote preference. Pick between old-style Retweets using RT, or the newer format that uses double quotes. To view the options page, install the latest version of this extension, navigate to the extensions dashboard (Chrome Browser -> Window Menu -> Extensions), and then click the 'Options' link. Refresh your twitter.com page for the quote options to take effect. Feedback ---------------- I wrote this for myself, but now that it's up and running feel free to leave a comment and let me know how it's working for you. If there's any other useful features to add, I'd be glad to do so in my free time.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | mmfjadlbhpakkcbihocajdmgenfgoell |
Επίσημο URL | https://chrome.google.com/webstore/detail/tweet-better/mmfjadlbhpakkcbihocajdmgenfgoell |
Περιγραφή | Enables single click 'Quote' and 'Email' functionality on Twitter.com. |
Μέγεθος Αρχείου | 45.67 KB |
Αριθμός Εγκαταστάσεων | 166 |
Τρέχουσα Έκδοση | 2.0.1 |
Τελευταία Ενημέρωση | 2013-06-25 |
Ημερομηνία Δημοσίευσης | 2013-06-25 |
Αξιολόγηση | 2.93/5 Συνολικά 28 Αξιολογήσεις |
Προγραμματιστής | http://pernalin.com |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://pernalin.com/projects-2/ |
Διεύθυνση URL της Σελίδας Βοήθειας | http://pernalin.com/projects-2/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "manifest_version": 2, "name": "Tweet Better", "description": "Enables single click 'Quote' and 'Email' functionality on Twitter.com.", "version": "2.0.1", "permissions": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "jquery-1.8.2.min.js", "main.js", "tweetbetter.js" ], "run_at": "document_end" } ], "options_page": "options.html", "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "browser_action": { "default_icon": "TweetBetter.png" } } |