Twitter old favourite
Replace the new twitter heart favourite icon with the old star icon.
Что такое Twitter old favourite?
Twitter old favourite - это расширение Chrome, разработанное Miles Croxford, и его основная функция - "Replace the new twitter heart favourite icon with the old star icon.".
Снимки экрана расширения
Скачать файл CRX расширения Twitter old favourite
Скачайте файлы расширений Twitter old favourite в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Don't like the new heart button? Feel no love? This extension reverts and replaces the new twitter heart favourite icon to that old yellow star that everyone is missing.
Основная информация о расширении
Название | |
ID | lkfbecccmniadcbdhkeepdkfekhloinc |
Официальный URL | https://chrome.google.com/webstore/detail/twitter-old-favourite/lkfbecccmniadcbdhkeepdkfekhloinc |
Описание | Replace the new twitter heart favourite icon with the old star icon. |
Размер файла | 8.49 KB |
Количество установок | 40 |
Текущая Версия | 0.1 |
Последнее Обновление | 2015-11-03 |
Дата публикации | 2015-11-03 |
Рейтинг | 3.17/5 Всего 6 оценок |
Разработчик | Miles Croxford |
Тип оплаты | free |
Официальный сайт расширения | http://milescroxford.com |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter old favourite", "description": "Replace the new twitter heart favourite icon with the old star icon.", "version": "0.1", "permissions": [ "*:\/\/twitter.com\/*" ], "web_accessible_resources": [ "stars.png" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "js": [ "main.js" ], "run_at": "document_end" } ], "manifest_version": 2 } |