Random Signature Quotes for Gmail™
Chrome Extension to inject random quotes in your Gmail signature.
Τι είναι το Random Signature Quotes for Gmail™;
Το Random Signature Quotes for Gmail™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον James Mortensen, και η κύρια λειτουργία του είναι "Chrome Extension to inject random quotes in your Gmail signature.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Random Signature Quotes for Gmail™
Λήψη αρχείων επέκτασης Random Signature Quotes for Gmail™ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Version 2.0.2 includes a bug fix where a fade-in and fade-out on save feature was causing errors in the JSON panel. ---- This is version 2.0.1 of Random Signature Quotes for Gmail™, which includes the ability to add quotes to the signature for replies, not just initially composed messages. This has been a highly requested feature for many years now. 2.0.1 also includes upgrades to the extension architecture, moving from manifest v2 to v3, Chrome's newer extension platform. ---- Version 1.0.0 contained major improvements to the quote manager, accessible at the top right in the address bar. 1.0.0 made it much easier to add, edit, or remove quotes, without dealing with the complicated JSON markup from the previous version. For power users, the JSON panel is still available, in case you want to export quotes or re-import a bulk collection of quotes. ---- To help inspire others, and so I could more easily see quotes I enjoyed hearing from famous, successful technology startup founders and other influential people, I wanted something that would put those quotes randomly in my Gmail signature. Well, there wasn't anything out there that did that, so I created something that did. I specifically wanted to be able to control the quotes myself. When you install this extension, my hand-picked quotes are selected by default, but you can change them by clicking the page action 'S' icon next to the favorites star in the address bar and editing the quotes. The quotes are stored as a JavaScript array, so you may want to export them to a nice text editor like Sublime text if you're going to make extensive changes via the JSON editor. Gmail™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Random Signature Quotes for Gmail™ |
ID | kbjehpegjjfajhnommoeefdjhlhbgojh |
Επίσημο URL | https://chromewebstore.google.com/detail/random-signature-quotes-f/kbjehpegjjfajhnommoeefdjhlhbgojh |
Περιγραφή | Chrome Extension to inject random quotes in your Gmail signature. |
Μέγεθος Αρχείου | 142 KB |
Αριθμός Εγκαταστάσεων | 409 |
Τρέχουσα Έκδοση | 2.0.2 |
Τελευταία Ενημέρωση | 2023-05-19 |
Ημερομηνία Δημοσίευσης | 2014-09-19 |
Αξιολόγηση | 3.50/5 Συνολικά 20 Αξιολογήσεις |
Προγραμματιστής | James Mortensen |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/jamesmortensen/random-gmail-quotes/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "exclude_globs": [], "exclude_matches": [], "include_globs": [ "*\/\/mail.google.com*" ], "js": [ "js\/lib\/jquery-3.6.1.min.js", "quotes.js", "js\/randomQuoteContentScript.js" ], "matches": [ "*:\/\/mail.google.com\/*" ], "run_at": "document_idle" } ], "description": "Chrome Extension to inject random quotes in your Gmail signature.", "name": "Random Signature Quotes for Gmail\u2122", "version": "2.0.2", "manifest_version": 3, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "js\/lib\/jquery-3.6.1.min.map" ], "matches": [ "*:\/\/mail.google.com\/*" ] } ], "action": { "default_icon": { "19": "images\/S-logo-19.png", "38": "images\/S-logo-38.png" }, "default_title": "Edit Signatures", "default_popup": "quoteManagerPageActionSimple.html" }, "icons": { "16": "images\/S-logo-16.png", "48": "images\/S-logo-48.png", "128": "images\/S-logo-128.png" } } |