Trac Notifier

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

Cos'è Trac Notifier?

Trac Notifier è un'estensione di Chrome sviluppata da Peter Prikryl, e la sua funzione principale è "Notifies you about the new events in the Trac. Supports watching multiple Trac projects and authentication (Basic and Forms).".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Trac Notifier

Scarica i file di estensione Trac Notifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        # 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.                    

Informazioni di Base sull'Estensione

Nome Trac Notifier Trac Notifier
ID ekgfjockodkkmnidgefajfjhbhflpghk
URL Ufficiale https://chromewebstore.google.com/detail/trac-notifier/ekgfjockodkkmnidgefajfjhbhflpghk
Descrizione Notifies you about the new events in the Trac. Supports watching multiple Trac projects and authentication (Basic and Forms).
Dimensione del File 41.74 KB
Conteggio Installazioni 29
Versione Corrente 1.4
Ultimo Aggiornamento 2013-12-03
Data di Pubblicazione 2013-12-03
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Peter Prikryl
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://pc.poradna.net/info/gdpr
Lingue Supportate 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"
    ]
}