Trac Notifier

Notifies you about the new events in the Trac. Supports watching multiple Trac projects and authentication (Basic and Forms).

Что такое Trac Notifier?

Trac Notifier - это расширение Chrome, разработанное Peter Prikryl, и его основная функция - "Notifies you about the new events in the Trac. Supports watching multiple Trac projects and authentication (Basic and Forms).".

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

screenshot
screenshot

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

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

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

                        # Trac Notifier

Checks the news in the Trac RSS and notifies you about them. Just visit the Trac page and click the page action in the URL bar. Tick the displayed feeds you want to watch.

## Features

- You can set the interval at which the news should be checked.
- You can follow multiple RSS feeds in multiple Trac projects.
- Credentials to use for Basic Authentication can be set in the options.
- Supports Forms Authentication

## Permissions

Your data on all websites
:	Used to check whether the current page belongs to Trac.

Notifications
:	Used to display Trac notifications.                    

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

Название Trac Notifier Trac Notifier
ID ekgfjockodkkmnidgefajfjhbhflpghk
Официальный URL https://chromewebstore.google.com/detail/trac-notifier/ekgfjockodkkmnidgefajfjhbhflpghk
Описание Notifies you about the new events in the Trac. Supports watching multiple Trac projects and authentication (Basic and Forms).
Размер файла 41.74 KB
Количество установок 29
Текущая Версия 1.4
Последнее Обновление 2013-12-03
Дата публикации 2013-12-03
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Peter Prikryl
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://pc.poradna.net/info/gdpr
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trac Notifier",
    "version": "1.4",
    "manifest_version": 2,
    "description": "Notifies you about the new events in the Trac. Supports watching multiple Trac projects and authentication (Basic and Forms).",
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": "images\/icon16.png",
        "default_title": "Trac Notifier",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "notifications",
        ""
    ],
    "web_accessible_resources": [
        "images\/vertbars.png",
        "images\/attachment.png",
        "images\/batchmodify.png",
        "images\/closedticket.png",
        "images\/editedticket.png",
        "images\/changeset.png",
        "images\/milestone.png",
        "images\/newticket.png",
        "images\/reopenedticket.png",
        "images\/wiki.png"
    ]
}