Hangouts Notifications

Add Chrome notifications to hangouts

Τι είναι το Hangouts Notifications;

Το Hangouts Notifications είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://nicosantangelo.com, και η κύρια λειτουργία του είναι "Add Chrome notifications to hangouts".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Hangouts Notifications

Λήψη αρχείων επέκτασης Hangouts Notifications σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Open source Extension which adds Chrome notifications to Hangouts tabs.

It supports multiple hangouts instances at the same time (for example if you're using both Gmail and Inbox).

Notifies you when:
- A contact becomes online
- There's a new chat message

Remember! You need to keep your gmail, inbox or hangouts tab open for the extension to work. I am not affiliated with Google in any way, so it's the best that I can do :)

Changelog:

3.1.0

- Support long notification times on Windows 10 by adding a Close button
- Reliably recognize when the tab is active

3.0.0

- Keywords support
- Optional permissions to avoid re-opening tabs
- Support long notification times and update notification

2.0.1

- Open a configurable URL when the extension icon is clicked, defaulting to `hangouts.google.com`

2.0.0
- Add the "Play sound" option
- Add the "Mute all notifications except for" option
- Re-style options page
- Clicking the extension badge opens the options page

1.4.0
- Show an active icon when the extension is running

1.3.0
- Add a "Disable on" option
- Redesign options page

1.2.0
- Better multiple conversations support, trying to show the avatar of the person how actually spoke
- Add an option to fire notifications even if the hangouts tab it's not active

You can view the code at https://github.com/NicoSantangelo/hangouts-chrome-notifications                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Hangouts Notifications Hangouts Notifications
ID fbpmaadfebbedknhmeeijeicldjlegee
Επίσημο URL https://chromewebstore.google.com/detail/hangouts-notifications/fbpmaadfebbedknhmeeijeicldjlegee
Περιγραφή Add Chrome notifications to hangouts
Μέγεθος Αρχείου 78.09 KB
Αριθμός Εγκαταστάσεων 169,416
Τρέχουσα Έκδοση 3.1.1
Τελευταία Ενημέρωση 2018-11-14
Ημερομηνία Δημοσίευσης 2018-11-14
Αξιολόγηση 3.99/5 Συνολικά 367 Αξιολογήσεις
Προγραμματιστής https://nicosantangelo.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://nicosantangelo.com
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/NicoSantangelo/hangouts-chrome-notifications
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hangouts Notifications",
    "description": "Add Chrome notifications to hangouts",
    "short_name": "Hangouts Notifications",
    "version": "3.1.1",
    "icons": {
        "18": "icons\/18.png",
        "19": "icons\/19.png",
        "38": "icons\/38.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "18": "icons\/inactive_18.png",
            "19": "icons\/inactive_19.png",
            "38": "icons\/inactive_38.png",
            "48": "icons\/inactive_48.png",
            "128": "icons\/inactive_128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/hangouts.google.com\/webchat\/*",
                "https:\/\/hangouts.google.com\/webchat\/u\/*",
                "http:\/\/hangouts.google.com\/webchat\/*",
                "http:\/\/hangouts.google.com\/webchat\/u\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "configuration.js",
            "Notification.js",
            "optionalPermissions.js",
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options\/options.html",
    "permissions": [
        "storage",
        "notifications"
    ],
    "optional_permissions": [
        "tabs"
    ],
    "content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval' https:\/\/www.google-analytics.com; img-src 'self' https:\/\/www.google-analytics.com https:\/\/stats.g.doubleclick.net data:"
}