Plugins
Control and manage your Chrome plugins
Τι είναι το Plugins;
Το Plugins είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://singleclickapps.com, και η κύρια λειτουργία του είναι "Control and manage your Chrome plugins".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Plugins
Λήψη αρχείων επέκτασης Plugins σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Extension manager with shortcuts to Chrome plugins pages. When installed, it will add "Plugins" button to the toolbar. Click the icon (or press Ctrl+Shift+E) and you'll open the "plugins" menu. In the current version it includes: 🛠️ Plugins Manager -- fully-featured extensions, apps and themes manager to quickly view, enable, disable or remove extensions 🛡️ Permission Scanner -- a tool to check all permissions granted to all extensions and apps and easily see which plugins are using more sensitive permissions in simple table view And it comes with few quick links to plugin/permissions related Chrome features: 🔗 "Keyboard Shortcuts" (so you can quickly manage extension shortcuts directly from the Plugins menu) 🔗 Shortcut to the "Components" page (which replaced the original plugins page some time ago) 🔗 "Global permissions" -- to allow/block plugins globally 🔗 "Allow/Block" -- for quick access to the content permissions for the current tab This extension started as simple flash plugin button 10 years ago, but when flash was retired, we decided to turn it into one-stop "plugins control centre". The last addition (in the current version 7.0) is the permission scanner. For the next versions we plan to add even more plugins management and security related features. 🔑 This extension requires the following permissions: -- "Context Menu" -- needed to add the plugins links to the right-click menu -- "Active Tab" -- that is required for the "Allow/Block on current site" to work -- "Management" -- it needs that permission in order for the "Plugins Manager" and "Permission Scanner" to access extensions, apps and themes installed 🔒 Privacy: We do not collect any data and this extension does not communicate with any external servers.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Plugins |
ID | mmcblfncjaclajmegihojiekebofjcen |
Επίσημο URL | https://chromewebstore.google.com/detail/plugins/mmcblfncjaclajmegihojiekebofjcen |
Περιγραφή | Control and manage your Chrome plugins |
Μέγεθος Αρχείου | 1.24 MB |
Αριθμός Εγκαταστάσεων | 505,050 |
Τρέχουσα Έκδοση | 7.0 |
Τελευταία Ενημέρωση | 2023-09-04 |
Ημερομηνία Δημοσίευσης | 2018-02-17 |
Αξιολόγηση | 3.84/5 Συνολικά 293 Αξιολογήσεις |
Προγραμματιστής | https://singleclickapps.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://singleclickapps.com/plugins-button/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://singleclickapps.com/plugins-button/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://singleclickapps.com/privacy.html |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Plugins", "version": "7.0", "manifest_version": 2, "homepage_url": "https:\/\/singleclickapps.com\/plugins-button", "description": "Control and manage your Chrome plugins", "icons": { "16": "icon.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "activeTab", "contextMenus" ], "optional_permissions": [ "management" ], "offline_enabled": true, "browser_action": { "default_icon": "icon.png", "default_title": "Plugins", "default_popup": "popup\/popup.html" }, "incognito": "spanning", "background": { "scripts": [ "background.js" ], "persistent": false }, "options_page": "settings.html", "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" } } } } |