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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}