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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" ] } ] } |