Full Width Twitter

Change twitter layout to full-width and bold in links

Что такое Full Width Twitter?

Full Width Twitter - это расширение Chrome, разработанное https://www.twisted.cz, и его основная функция - "Change twitter layout to full-width and bold in links".

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

screenshot
screenshot
screenshot

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

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

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

                        Change twitter layout to full-width and bold in links
===
no ads, no logins, just profit :)



CHANGELOG
==========
0.5 - twitter changes
0-4 - afect just home screen
0.3 - change styles on other screens
0.2 - bold-in links
0.1 - first prototype                    

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

Название Full Width Twitter Full Width Twitter
ID lmocojeaajhekebcnifbejlggachgmim
Официальный URL https://chromewebstore.google.com/detail/full-width-twitter/lmocojeaajhekebcnifbejlggachgmim
Описание Change twitter layout to full-width and bold in links
Размер файла 46.64 KB
Количество установок 125
Текущая Версия 0.5
Последнее Обновление 2013-06-24
Дата публикации 2013-06-24
Рейтинг 4.40/5 Всего 10 оценок
Разработчик https://www.twisted.cz
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Full Width Twitter",
    "version": "0.5",
    "manifest_version": 2,
    "description": "Change twitter layout to full-width and bold in links",
    "background": {
        "scripts": [
            "myjs.js"
        ]
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "Full width Twitter"
    },
    "offline_enabled": true,
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "css": [
                "mystyle.css"
            ]
        }
    ]
}