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)".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tweetbot Me!
قم بتنزيل ملفات الامتداد Tweetbot Me! بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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! |
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" ] } |