New Tab Override

Load a custom URL when opening a new tab.

Τι είναι το New Tab Override;

Το New Tab Override είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mustang, και η κύρια λειτουργία του είναι "Load a custom URL when opening a new tab.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης New Tab Override

Λήψη αρχείων επέκτασης New Tab Override σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Most extensions that allow a custom URL for the new tab page do so by redirecting to the URL then attempting to focus on the address bar.

The second step of focusing on the address bar when using the redirect method was broken in Chrome 61.

This extension fixes the second step by using a new method, rather than redirecting it loads the URL in the background then injects its content into a empty new tab page.

This means there is no redirect, and therefore the address bar never actually loses focus in the first place.

Permissions:
* Read and change all your data on the websites that you visit - Used only to load the URL in the background, none of your data or websites you visit are ever read or changed.
* Replace the page that you see when opening a new tab - Duh!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα New Tab Override New Tab Override
ID fjcmlondipcnnpmbcollgifldmajfonf
Επίσημο URL https://chromewebstore.google.com/detail/new-tab-override/fjcmlondipcnnpmbcollgifldmajfonf
Περιγραφή Load a custom URL when opening a new tab.
Μέγεθος Αρχείου 11.06 KB
Αριθμός Εγκαταστάσεων 2,698
Τρέχουσα Έκδοση 1.2.0
Τελευταία Ενημέρωση 2023-12-05
Ημερομηνία Δημοσίευσης 2017-09-22
Αξιολόγηση 3.35/5 Συνολικά 23 Αξιολογήσεις
Προγραμματιστής Mustang
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "New Tab Override",
    "description": "Load a custom URL when opening a new tab.",
    "version": "1.2.0",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "options_page": "options.html",
    "action": {
        "default_popup": "options.html"
    },
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhOfPL+5B\/RopGNRF5ureMZIVO9vWLfhxfYlLtrvN42ClqSIh\/fRVVKjQsEa76R\/97yEEP8epzRxLnNg1YJGywHLvTua7Ycb5PDJBLbOaE88cLJ4gSlQQof\/Cpl5ESkrNbtaxUoIOIYGXUHufjRfbXqOpBq5W+fmqgUpm1v4X7o2LmJuIJpaXFHuV5ObSj2vIVWxluQNRbodEKbLBPm1EeQR7PGknzOWqd85QJ13nXGI9p1aubQuDwh0LwHk6FpOWXteVvEWwv0xx+Q2Am4MYHmdesBwXBLR+DCWPgHIN327Yr3Vgxuwvjn2S4CWGbIZnGcNgEUd8V02CNBkj3wetIQIDAQAB"
}