Google Account Chooser

A simple extension to choose Google accounts per tab.

Google Account Chooser क्या है?

Google Account Chooser Adam Goldstein द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension to choose Google accounts per tab."।

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

screenshot
screenshot
screenshot

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

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

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

                        Have you ever gotten an error when trying to view a Google Form because it was created in an organization that you were a part of, but had logged in as a secondary account? Have you ever had a file on Google Drive shared with you, but gotten an error because it was shared with your secondary account? Some of those services have an icon in the top right-hand corner to switch your account, but some of them don't. This extension helps with those services that don't.

Never again settle for the advice of "log out of all your Google accounts and log back in with just this one." If you're like me, you've been there, and are in no rush to get back.

The permissions are limited and reasonable. It should not significantly affect performance. All the code is short, readable, commented, and completely open source (https://github.com/agoldstein03/Account-Chooser-Extension).                    

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

नाम Google Account Chooser Google Account Chooser
ID pdbppghdicnfoeomddlophldnednbmji
आधिकारिक URL https://chromewebstore.google.com/detail/google-account-chooser/pdbppghdicnfoeomddlophldnednbmji
विवरण A simple extension to choose Google accounts per tab.
फ़ाइल का आकार 33.77 KB
स्थापना संख्या 150
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2020-06-03
प्रकाशन तिथि 2020-06-02
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Adam Goldstein
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/agoldstein03/Account-Chooser-Extension
सहायता पृष्ठ URL https://github.com/agoldstein03/Account-Chooser-Extension/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Account Chooser",
    "short_name": "Account Chooser",
    "version": "1.0.1",
    "minimum_chrome_version": "40",
    "description": "A simple extension to choose Google accounts per tab.",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "*:\/\/accounts.google.com\/*"
    ],
    "icons": {
        "16": "logo16.png",
        "24": "logo24.png",
        "32": "logo32.png",
        "48": "logo48.png",
        "64": "logo64.png",
        "128": "logo128.png"
    }
}