TweetThis
Tweets the current URL
ما هو TweetThis؟
TweetThis هو إضافة Chrome تم تطويرها بواسطة Jarryd Lee، والميزة الرئيسية لها هي "Tweets the current URL".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة TweetThis
قم بتنزيل ملفات الامتداد TweetThis بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Allows for an easy one click method to tweet your current URL by clicking the tweet this button up the top right of the browser.
معلومات أساسية عن التمديد
الاسم | |
ID | dfeipfeeiojbkadlgokhllookmopmdhi |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi |
الوصف | Tweets the current URL |
حجم الملف | 81.59 KB |
عدد التثبيتات | 47 |
النسخة الحالية | 2.1 |
آخر تحديث | 2014-02-13 |
تاريخ النشر | 2014-02-13 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Jarryd Lee |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TweetThis", "short_name": "TweetThis", "author": "Jarryd Lee", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "description": "Tweets the current URL", "version": "2.1", "background": { "scripts": [ "jquery.js", "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "jquery.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_icon": "icon16.png", "permissions": [ "tabs", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*", "http:\/\/api.bit.ly\/*" ] }, "web_accessible_resources": [ "jquery-1.10.1.min.map" ], "manifest_version": 2 } |