Tweetbot Me!

Create a default tweet with page title and URL and send it to Tweetbot application (Mac OSX Only)

什麼是Tweetbot Me!?

Tweetbot Me!是由technofeliz開發的Chrome擴展程式,該擴展的主要功能是“Create a default tweet with page title and URL and send it to Tweetbot application (Mac OSX Only)”。

擴展截圖

screenshot

下載Tweetbot Me!擴展crx文件

下載Tweetbot Me!擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This simple addon creates a new tweet in Tweetbot formatted by default using this pattern : "«" + title + "»" + url
Tweetbot is a great Mac OSX Twitter client : http://tapbots.com/tweetbot/mac/
I developed this addon for my own use because I was missing this feature since I switched from Firefox to Chrome. I hope it will be usefull for other Firefox and Tweetbot users.

PS1 : This is not a official plugin from Tapbots, don't bother them with support requests ! ;)
PS2 : This addon works on every platform you can install Firefox on but as long as it sends informations to Tweetbot, it will be useless if you don't have Tweetbot installed.                    

擴展基本資訊

名稱 Tweetbot Me! Tweetbot Me!
ID moennemehkpgibjfjncmcnidjddbpjbp
官方網址 https://chromewebstore.google.com/detail/tweetbot-me/moennemehkpgibjfjncmcnidjddbpjbp
簡介 Create a default tweet with page title and URL and send it to Tweetbot application (Mac OSX Only)
檔案大小 32.33 KB
安裝次數 11
目前版本 0.0.1
更新時間 2017-10-24
上架時間 2017-10-23
評分 5.00/5 共 1 次評分
開發者 technofeliz
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tweetbot Me!",
    "description": "Create a default tweet with page title and URL and send it to Tweetbot application (Mac OSX Only)",
    "version": "0.0.1",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "images\/appicon128.png",
        "default_title": "Tweetbot Me!"
    },
    "icons": {
        "16": "images\/appicon16.png",
        "48": "images\/appicon48.png",
        "128": "images\/appicon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "activeTab"
    ]
}