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)」です。
拡張機能のスクリーンショット
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! |
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 |
Eメール | [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" ] } |