PenaltyBlox

When following is too much, but unfollowing is too harsh.

Что такое PenaltyBlox?

PenaltyBlox - это расширение Chrome, разработанное iacono, и его основная функция - "When following is too much, but unfollowing is too harsh.".

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

screenshot

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

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

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

                        Whether it is a designer ultra-tweeting about some conference she is at or a venture capitalist intensely describing his pursuit of the always-elusive "inbox zero", sometimes you just want to mute someone you follow on Twitter. This extensions allows you to do just that. You can easily put accounts that you follow and hashtags that you wish would go away in the penalty box, where they will be silenced and feel shame. When you have deemed their sins absolved, you can let them out, free to fill your Twitter stream again.

Open sourced @ https://github.com/jeffreyiacono/penalty-blox ... send me a PR!                    

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

Название PenaltyBlox PenaltyBlox
ID ajoigckelmnkcjajbeinpkmbndeiokdg
Официальный URL https://chromewebstore.google.com/detail/penaltyblox/ajoigckelmnkcjajbeinpkmbndeiokdg
Описание When following is too much, but unfollowing is too harsh.
Размер файла 83.72 KB
Количество установок 90
Текущая Версия 1.1.1
Последнее Обновление 2016-06-26
Дата публикации 2016-06-26
Рейтинг 4.86/5 Всего 21 оценок
Разработчик iacono
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PenaltyBlox",
    "short_name": "PenaltyBlox",
    "manifest_version": 2,
    "description": "When following is too much, but unfollowing is too harsh.",
    "version": "1.1.1",
    "homepage_url": "http:\/\/penaltyblox.com",
    "minimum_chrome_version": "13.0",
    "content_security_policy": "script-src 'unsafe-eval'; object-src 'self'",
    "icons": {
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "background",
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "js\/lib\/jquery.js",
                "js\/lib\/underscore.js",
                "js\/core_extensions.js",
                "js\/watcher.js",
                "js\/referee.js",
                "js\/content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Penalty Blox",
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    }
}