Tweep List for Twitter
Adds an avatar menu to Twitter for quickly accessing user timelines.
Что такое Tweep List for Twitter?
Tweep List for Twitter - это расширение Chrome, разработанное https://serdar.work, и его основная функция - "Adds an avatar menu to Twitter for quickly accessing user timelines.".
Снимки экрана расширения
Скачать файл CRX расширения Tweep List for Twitter
Скачайте файлы расширений Tweep List for Twitter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
UPDATED for the new Twitter. One-click access to user timelines. Drag any avatar to the menu to add to your list. Drag out to remove an avatar from your list. No need to follow a user on Twitter to add it to your list. You can follow people easily without actually following. Works with Twitter desktop client. Syncs your list with your Google Chrome account. Full source code of this extension is available at GitHub: https://github.com/serd/tweep-list
Основная информация о расширении
Название | Tweep List for Twitter |
ID | oalmfcciblkpdbjinikclcdjnllkpoca |
Официальный URL | https://chromewebstore.google.com/detail/tweep-list-for-twitter/oalmfcciblkpdbjinikclcdjnllkpoca |
Описание | Adds an avatar menu to Twitter for quickly accessing user timelines. |
Размер файла | 84.51 KB |
Количество установок | 212 |
Текущая Версия | 1.2.5 |
Последнее Обновление | 2017-09-05 |
Дата публикации | 2017-09-05 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | https://serdar.work |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://serdar.work |
URL страницы политики конфиденциальности | https://serdar.work/chrome-extensions/privacy-policy.html |
Поддерживаемые языки | en,tr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.2.5", "manifest_version": 2, "description": "__MSG_extDescription__", "icons": { "128": "icon128.png" }, "default_locale": "en", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "css": [ "mystyles.css" ], "js": [ "lib\/jquery.js", "lib\/jquery.ui.core.js", "lib\/jquery.ui.widget.js", "lib\/jquery.ui.mouse.js", "lib\/jquery.ui.sortable.js", "lib\/jquery.ui.draggable.js", "lib\/jquery.ui.droppable.js", "lib\/jquery.ui.resizable.js", "lib\/jquery.mousewheel.js", "tweepList.js" ] } ], "homepage_url": "http:\/\/serdar.work" } |