Override Chrome's New Tab Policy
A workaround for bypassing or replacing the default Chrome new tab policy set by your organization.
Τι είναι το Override Chrome's New Tab Policy;
Το Override Chrome's New Tab Policy είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kareemsherif22, και η κύρια λειτουργία του είναι "A workaround for bypassing or replacing the default Chrome new tab policy set by your organization.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Override Chrome's New Tab Policy
Λήψη αρχείων επέκτασης Override Chrome's New Tab Policy σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension allows you to bypass the mandatory new tab page set by your organization or admin. You can leave the url input field empty to go to the default Chrome new tab. You can set a custom url to go to whenever you open a new tab. You can also point the new tab to any local file on your computer. And if you want to go to any new tab set by another extension, just get the url of the page opened by that extension and add it in the url field. Supported urls start with: "https://" "http://" "file://" "ftp" "urn" "chrome-extension://" "chrome://"
Βασικές Πληροφορίες Επέκτασης
Όνομα | Override Chrome's New Tab Policy |
ID | blipilanfdpkfifjekjokjahpjnngifa |
Επίσημο URL | https://chromewebstore.google.com/detail/override-chromes-new-tab/blipilanfdpkfifjekjokjahpjnngifa |
Περιγραφή | A workaround for bypassing or replacing the default Chrome new tab policy set by your organization. |
Μέγεθος Αρχείου | 19.18 KB |
Αριθμός Εγκαταστάσεων | 767 |
Τρέχουσα Έκδοση | 1.2 |
Τελευταία Ενημέρωση | 2021-09-14 |
Ημερομηνία Δημοσίευσης | 2021-08-15 |
Αξιολόγηση | 5.00/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | kareemsherif22 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://forms.gle/rYJeSd4HBHq8feXx6 |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Override Chrome's New Tab Policy", "version": "1.2", "description": "A workaround for bypassing or replacing the default Chrome new tab policy set by your organization.", "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "logo-16.png", "32": "logo-32.png", "48": "logo-48.png", "128": "logo-128.png" } }, "icons": { "16": "logo-16.png", "32": "logo-32.png", "48": "logo-48.png", "128": "logo-128.png" }, "permissions": [ "tabs", "storage" ] } |