Study Buddy Procrastination Helper

Study Enhancement Tool. Improve time management by limiting access to social media over customizable time intervals.

Что такое Study Buddy Procrastination Helper?

Study Buddy Procrastination Helper - это расширение Chrome, разработанное Emrie Productions, и его основная функция - "Study Enhancement Tool. Improve time management by limiting access to social media over customizable time intervals.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Study Buddy Procrastination Helper

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

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

                        Enhance study productivity by limiting the amount of time spent on social media sites (Facebook / Instagram / Pinterest / Reddit / Twitter / YouTube). 

Customizable settings for study / break intervals and specific sites being monitored.                    

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

Название Study Buddy Procrastination Helper Study Buddy Procrastination Helper
ID iipnehehhdldnjcbadhdcmibakfkpiml
Официальный URL https://chrome.google.com/webstore/detail/study-buddy-procrastinati/iipnehehhdldnjcbadhdcmibakfkpiml
Описание Study Enhancement Tool. Improve time management by limiting access to social media over customizable time intervals.
Размер файла 61.5 KB
Количество установок 231
Текущая Версия 1.2
Последнее Обновление 2015-07-01
Дата публикации 2015-07-01
Рейтинг 2.14/5 Всего 7 оценок
Разработчик Emrie Productions
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Study Buddy Procrastination Helper",
    "short_name": "Study Buddy",
    "description": "Study Enhancement Tool. Improve time management by limiting access to social media over customizable time intervals.",
    "version": "1.2",
    "browser_action": {
        "default_icon": "StudyBuddy.png",
        "default_title": "Study Buddy",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "content.js"
            ],
            "css": [
                "timer.css",
                "block.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "webNavigation",
        "https:\/\/ajax.googleapis.com\/",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "tabs"
    ]
}