Group phabricator notifications
Groups phabricator notifications
Wat is Group phabricator notifications?
Group phabricator notifications is een Chrome-extensie ontwikkeld door joakin, en de belangrijkste functie is "Groups phabricator notifications".
Extensie Screenshots
Download het CRX-bestand van de extensie Group phabricator notifications
Download Group phabricator notifications-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Group phabricator notifications |
ID | anjockgdedgaiionihlpdcjijpohipdj |
Officiële URL | https://chromewebstore.google.com/detail/group-phabricator-notific/anjockgdedgaiionihlpdcjijpohipdj |
Beschrijving | Groups phabricator notifications |
Bestandsgrootte | 430 KB |
Aantal Installaties | 36 |
Huidige Versie | 1.4 |
Laatst Bijgewerkt | 2020-06-06 |
Publicatiedatum | 2020-06-05 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | joakin |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/joakin/group-phabricator-notifications |
Ondersteunde Talen | 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": [] } |