Tweetbot Me!

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

Tweetbot Me! là gì?

Tweetbot Me! là một tiện ích mở rộng Chrome được phát triển bởi technofeliz, và tính năng chính của nó là "Create a default tweet with page title and URL and send it to Tweetbot application (Mac OSX Only)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tweetbot Me!

Tải xuống các tệp mở rộng Tweetbot Me! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tweetbot Me! Tweetbot Me!
ID moennemehkpgibjfjncmcnidjddbpjbp
URL Chính Thức https://chromewebstore.google.com/detail/tweetbot-me/moennemehkpgibjfjncmcnidjddbpjbp
Mô tả Create a default tweet with page title and URL and send it to Tweetbot application (Mac OSX Only)
Kích Thước Tệp 32.33 KB
Số Lần Cài Đặt 11
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2017-10-24
Ngày Phát Hành 2017-10-23
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển technofeliz
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}