Tweet Better

Enables single click 'Quote' and 'Email' functionality on Twitter.com.

什麼是Tweet Better?

Tweet Better是由http://pernalin.com開發的Chrome擴展程式,該擴展的主要功能是“Enables single click 'Quote' and 'Email' functionality on Twitter.com.”。

擴展截圖

screenshot

下載Tweet Better擴展crx文件

下載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.                    

擴展基本資訊

名稱 Tweet Better Tweet Better
ID mmfjadlbhpakkcbihocajdmgenfgoell
官方網址 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"
    }
}