Auto OAuth
Automatically log into sites with OAuth without having to always choose the account.
Τι είναι το Auto OAuth;
Το Auto OAuth είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tyler Elliott, και η κύρια λειτουργία του είναι "Automatically log into sites with OAuth without having to always choose the account.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Auto OAuth
Λήψη αρχείων επέκτασης Auto OAuth σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
When you have multiple Google or Microsoft accounts (for work, home, etc) every time you try to log into a website via OAuth, like with the "Login with Google" button, you have to choose the account you want to use. This extension allows you to choose a selected account per site that you'll always want to use in the future - one fewer click! Release Notes: 1.1.1 - Fix a bug that did not handle encoded redirect URLs 1.1.0 - Handle Auth in popup windows via a new context menu option 1.0.7 - Add detection for SAML based logins 1.0.6 - Help account choosing in Microsoft OAuth by pre-filling domains when available 1.0.5 - Handle new Google OAuth choice format 1.0.4 - Handle additional Google OAuth URL suffixes 1.0.3 - Import/Export settings 1.0.2 - Fix a bug preventing Google URLs from being parsed correctly 1.0.1 - Add support for Microsoft OAuth 1.0.0 - Initial release
Βασικές Πληροφορίες Επέκτασης
Όνομα | Auto OAuth |
ID | glhekmchljganpiecbdefijjkppbeinj |
Επίσημο URL | https://chromewebstore.google.com/detail/auto-oauth/glhekmchljganpiecbdefijjkppbeinj |
Περιγραφή | Automatically log into sites with OAuth without having to always choose the account. |
Μέγεθος Αρχείου | 113 KB |
Αριθμός Εγκαταστάσεων | 74 |
Τρέχουσα Έκδοση | 1.1.1 |
Τελευταία Ενημέρωση | 2023-08-12 |
Ημερομηνία Δημοσίευσης | 2021-04-13 |
Προγραμματιστής | Tyler Elliott |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/tylercal/auto-oauth/issues |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto OAuth", "description": "Automatically log into sites with OAuth without having to always choose the account.", "version": "1.1.1", "options_page": "src\/options.html", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "page_action": { "default_icon": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "default_title": "Auto OAuth", "default_popup": "src\/menu.html" }, "permissions": [ "storage", "tabs", "contextMenus", "webNavigation", "https:\/\/accounts.google.com\/o\/oauth2\/*", "https:\/\/login.microsoftonline.com\/*" ], "web_accessible_resources": [ "images\/*", "src\/menu.html" ], "background": { "scripts": [ "src\/pako.js", "src\/background.js" ], "persistent": false } } |