Gmail Classic

Revert my gmail

Gmail Classic क्या है?

Gmail Classic epper.marshall द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Revert my gmail"।

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

screenshot

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

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

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

                        A css injector to revert some of the new gmail styles back to buttons.

Features you can selectively revert:
-compose button (you can even choose to change the color)
-icons in the left column by the folder names
-buttons along the top
-inbox shadow hover
-tabs

You will need to refresh gmail after loading this extension.                    

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

नाम Gmail Classic Gmail Classic
ID flkjieldopkkipfldndimbfmlolahlfd
आधिकारिक URL https://chrome.google.com/webstore/detail/gmail-classic/flkjieldopkkipfldndimbfmlolahlfd
विवरण Revert my gmail
फ़ाइल का आकार 270 KB
स्थापना संख्या 337
वर्तमान संस्करण 1.3
अंतिम अपडेट 2018-10-01
प्रकाशन तिथि 2018-10-01
रेटिंग 2.11/5 कुल 9 रेटिंग्स
डेवलपर epper.marshall
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/depperm/classicGmail
सहायता पृष्ठ URL https://github.com/depperm/classicGmail
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Classic",
    "version": "1.3",
    "description": "Revert my gmail",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "options.html",
        "default_title": "Classic Gmail Options",
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        }
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "web_accessible_resources": [
        "classic.js",
        "shadow.css",
        "buttons.css",
        "compose.css",
        "lefticons.css",
        "tabs.css",
        "search.css"
    ],
    "background": {
        "scripts": [
            "jquery-3.3.1.min.js",
            "jscolor.js"
        ]
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/mail\/u\/0*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "classic.js"
            ],
            "run_at": "document_start"
        }
    ]
}