Search On Twitter
Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
ما هو Search On Twitter؟
Search On Twitter هو إضافة Chrome تم تطويرها بواسطة http://www.thetravisw.com، والميزة الرئيسية لها هي "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Search On Twitter
قم بتنزيل ملفات الامتداد Search On Twitter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Search On Twitter adds to the Right-Click context menu. If the selected text starts with "@", the option to open Twitter profile will be presented. If the selected does not begin with "@", then the option to search on Twitter will be presented. Source Code - https://github.com/travis-w/Search-On-Twitter
معلومات أساسية عن التمديد
الاسم | |
ID | dhpmpdpphfgejncefefmdhklfbliefkm |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm |
الوصف | Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu |
حجم الملف | 9.53 KB |
عدد التثبيتات | 465 |
النسخة الحالية | 1.0 |
آخر تحديث | 2014-09-28 |
تاريخ النشر | 2014-09-28 |
تقييم | 3.71/5 مجموع تقييمات 7 |
المطور | http://www.thetravisw.com |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Search On Twitter", "description": "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu ", "version": "1.0", "manifest_version": 2, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "permissions": [ "contextMenus", "tabs" ], "background": { "scripts": [ "js\/main.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/contentscript.js" ] } ] } |