Twitter Roulette

This extension allows to select a random tweet from a sample search.

Что такое Twitter Roulette?

Twitter Roulette - это расширение Chrome, разработанное icoloma, и его основная функция - "This extension allows to select a random tweet from a sample search.".

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

screenshot
screenshot

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

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

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

                        Do a lottery and pick a random tweet based on your search criteria, useful for IT events and promotions. This extension requires a Twitter API key. Developed in 48h, battle-tested at Codemotion Spain.

The Twitter API does not serve proper CORS headers, so in order to do this without a server, it had to be packaged as a Chrome Extension.

This project is open source, and the source code is available at https://github.com/icoloma/twitter-roulette                    

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

Название Twitter Roulette Twitter Roulette
ID jidffkpleipkoohdmdjabocmehcemifm
Официальный URL https://chromewebstore.google.com/detail/twitter-roulette/jidffkpleipkoohdmdjabocmehcemifm
Описание This extension allows to select a random tweet from a sample search.
Размер файла 397 KB
Количество установок 26
Текущая Версия 1.1
Последнее Обновление 2014-11-13
Дата публикации 2014-11-13
Разработчик icoloma
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Roulette",
    "description": "This extension allows to select a random tweet from a sample search.",
    "version": "1.1",
    "permissions": [
        "https:\/\/api.twitter.com\/",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "index.html"
    },
    "options_page": "options.html"
}