Twitter Stars

Changes the new Twitter 'Like' heart back to the original 'Favorite' star!

Что такое Twitter Stars?

Twitter Stars - это расширение Chrome, разработанное Kieran Uddin, и его основная функция - "Changes the new Twitter 'Like' heart back to the original 'Favorite' star!".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Twitter Stars

Скачайте файлы расширений Twitter Stars в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Don't like the new Twitter "Like" button?
Install this Chrome extension today and change that pesky heart icon back to the original star!

v1.7.3 Changelog
- Fixed likes not being changed to favourites on certain pages.
- Minor styling fixes.                    

Основная информация о расширении

Название Twitter Stars Twitter Stars
ID nbaegdkhokgebjcjjpjliefppcaalcea
Официальный URL https://chromewebstore.google.com/detail/twitter-stars/nbaegdkhokgebjcjjpjliefppcaalcea
Описание Changes the new Twitter 'Like' heart back to the original 'Favorite' star!
Размер файла 77.15 KB
Количество установок 63
Текущая Версия 1.7.3
Последнее Обновление 2016-08-31
Дата публикации 2016-08-31
Рейтинг 4.15/5 Всего 13 оценок
Разработчик Kieran Uddin
Тип оплаты free
Поддерживаемые языки en,en-GB,en-US,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Stars",
    "short_name": "Twitter Stars",
    "options_page": "options\/index.html",
    "default_locale": "en",
    "description": "Changes the new Twitter 'Like' heart back to the original 'Favorite' star!",
    "version": "1.7.3",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.twitter.com\/*",
                "https:\/\/www.twitter.com\/*",
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery.js",
                "StarsMain.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/ajax.googleapis.com\/",
        "storage"
    ],
    "web_accessible_resources": [
        "img\/animation.png",
        "style.css"
    ],
    "background": {
        "scripts": [
            "jquery.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "img\/icon.png"
    }
}