Make Google Chat like Slack

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

Make Google Chat like Slack क्या है?

Make Google Chat like Slack JmQu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to extend the Google Chat to have the basic functionality that Slack has."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Make Google Chat like Slack एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Make Google Chat like Slack Make Google Chat like Slack
ID oilfeenjkfedhlpijdhgbhdkdkjdmdnc
आधिकारिक URL https://chromewebstore.google.com/detail/make-google-chat-like-sla/oilfeenjkfedhlpijdhgbhdkdkjdmdnc
विवरण An extension to extend the Google Chat to have the basic functionality that Slack has.
फ़ाइल का आकार 66.44 KB
स्थापना संख्या 562
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2021-09-18
प्रकाशन तिथि 2021-09-18
रेटिंग 2.00/5 कुल 2 रेटिंग्स
डेवलपर JmQu
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/SanCoder-Q/slackify-gchat
समर्थित भाषाएँ 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"
}