Group phabricator notifications

Groups phabricator notifications

What is Group phabricator notifications?

Group phabricator notifications is a Chrome extension developed by joakin, and its main feature is "Groups phabricator notifications".

Extension Screenshots

screenshot

Download Group phabricator notifications Extension CRX File

Download Group phabricator notifications extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Group phabricator notifications Group phabricator notifications
ID anjockgdedgaiionihlpdcjijpohipdj
Official URL https://chromewebstore.google.com/detail/group-phabricator-notific/anjockgdedgaiionihlpdcjijpohipdj
Description Groups phabricator notifications
File Size 430 KB
Installation Count 36
Current Version 1.4
Last Updated 2020-06-06
Publish Date 2020-06-05
Rating 5.00/5 Total 1 Ratings
Developer joakin
Email [email protected]
Payment Type free
Extension Website https://github.com/joakin/group-phabricator-notifications
Supported Languages 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": []
}