Group phabricator notifications
Groups phabricator notifications
¿Qué es Group phabricator notifications?
Group phabricator notifications es una extensión de Chrome desarrollada por joakin, y su función principal es "Groups phabricator notifications".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Group phabricator notifications
Descarga archivos de extensión Group phabricator notifications en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Group phabricator notifications |
ID | anjockgdedgaiionihlpdcjijpohipdj |
URL Oficial | https://chromewebstore.google.com/detail/group-phabricator-notific/anjockgdedgaiionihlpdcjijpohipdj |
Descripción | Groups phabricator notifications |
Tamaño del Archivo | 430 KB |
Cantidad de Instalaciones | 36 |
Versión Actual | 1.4 |
Última Actualización | 2020-06-06 |
Fecha de Publicación | 2020-06-05 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | joakin |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/joakin/group-phabricator-notifications |
Idiomas Soportados | 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": [] } |