Tweetbot Me!

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

Tweetbot Me!คืออะไร?

Tweetbot Me! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย technofeliz และคุณลักษณะหลักของมันคือ "Create a default tweet with page title and URL and send it to Tweetbot application (Mac OSX Only)"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tweetbot Me!

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    ]
}