Remove Retweets
An Extension for removing retweets of given users on twitter.com
Что такое Remove Retweets?
Remove Retweets - это расширение Chrome, разработанное oiva.eskola, и его основная функция - "An Extension for removing retweets of given users on twitter.com".
Снимки экрана расширения
Скачать файл CRX расширения Remove Retweets
Скачайте файлы расширений Remove Retweets в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Follow someone on Twitter because you like them but hate everything they retweet? Then this is the extension for you. This extension will let you specify Twitter users whose retweets you don't want to see. Their retweets will then be filtered from the main timeline and their user pages. Follow people for what they tweet, not what they retweet!
Основная информация о расширении
Название | |
ID | kpdjjfkdanbalgbghgmpiepnjkpokfoc |
Официальный URL | https://chrome.google.com/webstore/detail/remove-retweets/kpdjjfkdanbalgbghgmpiepnjkpokfoc |
Описание | An Extension for removing retweets of given users on twitter.com |
Размер файла | 103 KB |
Количество установок | 238 |
Текущая Версия | 1.0 |
Последнее Обновление | 2013-11-20 |
Дата публикации | 2013-11-20 |
Рейтинг | 2.36/5 Всего 11 оценок |
Разработчик | oiva.eskola |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Retweets", "description": "An Extension for removing retweets of given users on twitter.com", "version": "1.0", "permissions": [ "https:\/\/twitter.com\/", "storage", "activeTab" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": { "19": "img\/icon48.png", "38": "img\/icon48.png" }, "default_popup": "popup.html" }, "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "img\/icon128.png", "js\/underscore-1.5.2.min.map" ], "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "js": [ "js\/underscore-1.5.2.min.js", "js\/content.js" ], "run_at": "document_end" } ] } |