Glitter

25+ customizable themes for Twitter. Add your own flair to Twitter with an easy-to-use theme editor.

Что такое Glitter?

Glitter - это расширение Chrome, разработанное jarodpeachey, и его основная функция - "25+ customizable themes for Twitter. Add your own flair to Twitter with an easy-to-use theme editor.".

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

screenshot
screenshot

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

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

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

                        Update the old Twitter UI with your own flair and style.

Glitter allows you to create and edit your own Twitter themes, so you can make Twitter yours. Customize everything from colors, buttons, backgrounds and more.

🎨 Create and edit custom themes
✨ Choose from over 25 presets or use your own theme
🔥  Switch Twitter themes instantly
😎 Fully dark-mode compatible

Glitter supports unlimited custom themes, so your creativity will know no bounds!                    

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

Название Glitter Glitter
ID eemfjchmfdebpajeaaopbjgflhljhbnd
Официальный URL https://chromewebstore.google.com/detail/glitter/eemfjchmfdebpajeaaopbjgflhljhbnd
Описание 25+ customizable themes for Twitter. Add your own flair to Twitter with an easy-to-use theme editor.
Размер файла 44.81 KB
Количество установок 238
Текущая Версия 2.0.0
Последнее Обновление 2023-08-30
Дата публикации 2020-12-23
Рейтинг 5.00/5 Всего 4 оценок
Разработчик jarodpeachey
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://get-glitter.netlify.app
URL страницы помощи https://get-glitter.netlify.app
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Glitter",
    "version": "2.0.0",
    "description": "25+ customizable themes for Twitter. Add your own flair to Twitter with an easy-to-use theme editor.",
    "short_name": "Glitter",
    "icons": {
        "16": "img\/glitter.png",
        "48": "img\/glitter.png",
        "128": "img\/glitter.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "cookies",
        "*:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "css": [
                "css\/override.css"
            ],
            "js": [
                "js\/twitter.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Customize Twitter",
        "default_popup": "popup.html"
    }
}