Make Google Chat like Slack

An extension to extend the Google Chat to have the basic functionality that Slack has.

Qu'est-ce que Make Google Chat like Slack ?

Make Google Chat like Slack est une extension Chrome développée par JmQu, et sa fonction principale est "An extension to extend the Google Chat to have the basic functionality that Slack has.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Make Google Chat like Slack

Téléchargez les fichiers d'extension Make Google Chat like Slack au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This is for people who get used to Slack to engage Google Chat with seamless experience. 

This is inspired by the Chrome Extension "Google Chat thread links & quote reply".

https://chrome.google.com/webstore/detail/google-chat-thread-links/aogkhbmeeckelbhfemleoajbglamokbc?hl=en

But since thread is only one of many pain points we are facing day to day, why not take one step further to have more fancy features such as folding threads, thread heading, reply numbers, etc.

I will take baby steps to include all those features and more.

Functionalities:
- thread link
- quick reply
- thread heading
- folding threads
- reply numbers                    

Informations de Base sur l'Extension

Nom Make Google Chat like Slack Make Google Chat like Slack
ID oilfeenjkfedhlpijdhgbhdkdkjdmdnc
URL Officiel https://chromewebstore.google.com/detail/make-google-chat-like-sla/oilfeenjkfedhlpijdhgbhdkdkjdmdnc
Description An extension to extend the Google Chat to have the basic functionality that Slack has.
Taille du Fichier 66.44 KB
Nombre d'Installations 562
Version Actuelle 0.1.1
Dernière Mise à Jour 2021-09-18
Date de Publication 2021-09-18
Évaluation 2.00/5 Total 2 Évaluations
Développeur JmQu
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/SanCoder-Q/slackify-gchat
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Make Google Chat like Slack",
    "description": "An extension to extend the Google Chat to have the basic functionality that Slack has.",
    "version": "0.1.1",
    "icons": {
        "16": "resources\/90.png",
        "48": "resources\/90.png",
        "128": "resources\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "resources\/90.png",
            "48": "resources\/90.png",
            "128": "resources\/128.png"
        }
    },
    "permissions": [
        "https:\/\/chat.google.com\/*",
        "https:\/\/mail.google.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "bundle.min.js"
            ],
            "matches": [
                "https:\/\/chat.google.com\/*",
                "https:\/\/mail.google.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "homepage_url": "https:\/\/github.com\/SanCoder-Q\/slackify-gchat"
}