DevTwitter

Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.

Что такое DevTwitter?

DevTwitter - это расширение Chrome, разработанное Forem, и его основная функция - "Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.".

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

screenshot
screenshot

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

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

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

                        Headlines from https://dev.to are placed right below trends, so you can keep up to date with the latest dev content while you browse Twitter.

This project is open source. Read or contribute to the code source by visiting https://github.com/thepracticaldev/DevTwitter

This is the most basic version of the extension. I think there is a lot more we can do with it, so please feel free to contribute on GitHub.                    

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

Название DevTwitter DevTwitter
ID fhlipionhojfohecgljcljbpblojlaef
Официальный URL https://chromewebstore.google.com/detail/devtwitter/fhlipionhojfohecgljcljbpblojlaef
Описание Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.
Размер файла 30.6 KB
Количество установок 44
Текущая Версия 0.0.4
Последнее Обновление 2017-03-25
Дата публикации 2017-03-24
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Forem
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://dev.to
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DevTwitter",
    "version": "0.0.4",
    "manifest_version": 2,
    "description": "Bringing dev.to headlines and other @ThePracticalDev goodies into your Twitter browsing experience.",
    "homepage_url": "https:\/\/github.com\/thepracticaldev\/DevTwitter",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [
        "https:\/\/dev.to\/api\/articles"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ]
        }
    ]
}