Gmail Mod

Adds an embedded audio and video player to Gmail for playing audio and video attachments.

Τι είναι το Gmail Mod;

Το Gmail Mod είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://codemeteor.com, και η κύρια λειτουργία του είναι "Adds an embedded audio and video player to Gmail for playing audio and video attachments.".

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

screenshot
screenshot
screenshot

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

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

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

                        Gmail Mod adds extra functionality to the Gmail website.
The current version has the following features:

* Embedded video player for video attachments with file extension .mp4/.webm/.ogv/.mov
* Embedded audio player for audio attachments with file extension .wav/mp3/ogg
* A settings window where you can enable or disable Gmail Mod features.

Note that some files may not play because of an incorrect file extension or unsupported codec by the web browser.

THE FUTURE
When you have a great idea for the Gmail Mod don't hesitate to leave a comment or send an email to [email protected].

SUPPORT
When you need help using the Gmail Mod, leave a comment or send an email to [email protected].
You can also follow us on Twitter @codemeteor or visit https://codemeteor.com.

If you want to support this project, please consider making a PayPal donation using the following url https://www.paypal.me/codemeteor

You can also find the source code on GitLab https://gitlab.com/codemeteor/gmail-mod.                    

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

Όνομα Gmail Mod Gmail Mod
ID ociiedbaoiljmjfpnefiaplmcphobool
Επίσημο URL https://chromewebstore.google.com/detail/gmail-mod/ociiedbaoiljmjfpnefiaplmcphobool
Περιγραφή Adds an embedded audio and video player to Gmail for playing audio and video attachments.
Μέγεθος Αρχείου 70.02 KB
Αριθμός Εγκαταστάσεων 34,377
Τρέχουσα Έκδοση 2022.0.1
Τελευταία Ενημέρωση 2022-12-07
Ημερομηνία Δημοσίευσης 2019-07-21
Αξιολόγηση 4.30/5 Συνολικά 69 Αξιολογήσεις
Προγραμματιστής https://codemeteor.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Mod",
    "short_name": "gmail-mod",
    "version": "2022.0.1",
    "description": "Adds an embedded audio and video player to Gmail for playing audio and video attachments.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "gmail-mod.js"
            ],
            "css": [
                "css\/GmailMod.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/mail-attachment.googleusercontent.com\/*",
        "https:\/\/mail.google.com\/*",
        "http:\/\/mail.google.com\/*",
        "*:\/\/mail.google.com\/*",
        "*:\/\/*.google.com\/*",
        "*:\/\/*.googleusercontent.com\/*"
    ],
    "optional_permissions": [],
    "manifest_version": 3,
    "incognito": "split"
}