Extensions Update Notifier
Show a notification when an extension is updated.
Τι είναι το Extensions Update Notifier;
Το Extensions Update Notifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον François Beaufort, και η κύρια λειτουργία του είναι "Show a notification when an extension is updated.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Extensions Update Notifier
Λήψη αρχείων επέκτασης Extensions Update Notifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Google Chrome Extensions are auto-updated. This is cool, no doubt about it, but how do you know when an extension is updated? You don't until you install this extension. ▸ You will receive a notification when an extension is updated. ▸ If the updated extension has a log of records in its Chrome Web Store description, you can view it directly from the extension. ▸ And unlike other extensions, it also works with disabled extensions. If you also think Google Chrome should provide an option to toggle extensions updates notifications, go star this issue at http://crbug.com/28556 ------------------------------------------------ Changelog: 3.5: - Notifications will now remain visible on screen until user activates or dismisses them. 3.4: - Notifications will stay longer. 3.3: - Clean stored data when extension is uninstalled. 3.2: - Added spanish translation thanks to Oscar - Clean up locally stored data at startup. 3.1: - Display "Show changelog" only when it's relevant - Linkify URLs in changelog - Dismiss notification when extension is disabled - Fixed german translation thanks to Norbert - Fixed russian translation thanks to Timur 3.0: - Added brand new Options page: - "Automatically close notifications" option - "Disable extensions when autoupdated" option - "Show changelog (experimental)" option - Added ability to uninstall extensions when they're disabled - Updated icons - Added HiDPI notification buttons 2.3.1: - Improved changelog detection - Added dutch translation thanks to Carlos - Fixed a bug where tabs won't open if no windows were focused - Added HiDPI notifications 2.3: - Notifications are synced which means that if you close one on Device A, it won't be shown on Device B. - Added Chrome WebStore URL to changelog page 2.2: - Bug fix. 2.1: - Improved changelog detection by looking for version number also 2.0: - Take advantage of brand new Rich Notifications. - Use event pages to consume less memory. - Removed malware detection since Chrome does it natively now. - New extension icon thanks to Michael Cook. 1.5.2: - Added german translation thanks to Pascal. 1.5.1: - Added russian translation thanks to Vadim and Timur. 1.5: - Added new feature "Malware detection" which shows a warning for each extension that user did not install. 1.4.1: - Fixed a bug in "Open Changelog" feature. Thanks Abraham Williams! 1.4: - Added "Open Changelog" experimental feature which attempts to retrieve changelog from Chrome Web Store and displays it in a new tab. 1.3.3.1: - Hide "Visit Website" link if extension is loaded locally. For full details, go to https://github.com/beaufortfrancois/extensions-update-notifier-chrome-extension
Βασικές Πληροφορίες Επέκτασης
Όνομα | Extensions Update Notifier |
ID | nlldbplhbaopldicmcoogopmkonpebjm |
Επίσημο URL | https://chromewebstore.google.com/detail/extensions-update-notifie/nlldbplhbaopldicmcoogopmkonpebjm |
Περιγραφή | Show a notification when an extension is updated. |
Μέγεθος Αρχείου | 29.13 KB |
Αριθμός Εγκαταστάσεων | 13,557 |
Τρέχουσα Έκδοση | 3.5 |
Τελευταία Ενημέρωση | 2016-06-14 |
Ημερομηνία Δημοσίευσης | 2016-06-13 |
Αξιολόγηση | 4.60/5 Συνολικά 239 Αξιολογήσεις |
Προγραμματιστής | François Beaufort |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/beaufortfrancois/extensions-update-notifier-chrome-extension |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/beaufortfrancois/extensions-update-notifier-chrome-extension |
Υποστηριζόμενες Γλώσσες | de,en,fr,nl,es,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "utils.js", "notifications.js", "management.js" ] }, "default_locale": "en", "description": "__MSG_extDescription__", "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "manifest_version": 2, "minimum_chrome_version": "50.0.2661.50", "name": "__MSG_extName__", "optional_permissions": [ "https:\/\/chrome.google.com\/*" ], "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "alarms", "management", "notifications", "storage" ], "version": "3.5", "version_name": "3.5" } |