Group phabricator notifications

Groups phabricator notifications

Hvad er Group phabricator notifications?

Group phabricator notifications er en Chrome-udvidelse udviklet af joakin, og dens hovedfunktion er "Groups phabricator notifications".

Udvidelsesskærmbilleder

screenshot

Download Group phabricator notifications-udvidelses-CRX-fil

Download Group phabricator notifications-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This extension makes the phabricator notifications be grouped per task, so that they are less noisy to read.

You can expand the task to see the actual changes in it, or mark as read without even going to the task.

Applies to all phabricator.*.* and *.phabricator.* urls.

Source is at https://github.com/joakin/group-phabricator-notifications                    

Grundlæggende oplysninger om udvidelsen

Navn Group phabricator notifications Group phabricator notifications
ID anjockgdedgaiionihlpdcjijpohipdj
Officiel URL https://chromewebstore.google.com/detail/group-phabricator-notific/anjockgdedgaiionihlpdcjijpohipdj
Beskrivelse Groups phabricator notifications
Filstørrelse 430 KB
Antal Installationer 36
Nuværende Version 1.4
Senest Opdateret 2020-06-06
Udgivelsesdato 2020-06-05
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler joakin
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/joakin/group-phabricator-notifications
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Group phabricator notifications",
    "description": "Groups phabricator notifications",
    "version": "1.4",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/*.phabricator.*\/notification\/*",
                "*:\/\/phabricator.*.*\/notification\/*"
            ],
            "exclude_globs": [
                "*:\/\/*\/notification\/query\/edit\/"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "permissions": []
}