Simple New Tab URL

Simply set the URL you want new tabs to load and it'll load it. No fluff.

Τι είναι το Simple New Tab URL;

Το Simple New Tab URL είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://zach-adams.com, και η κύρια λειτουργία του είναι "Simply set the URL you want new tabs to load and it'll load it. No fluff.".

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

screenshot

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

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

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

                        Very similar to other "New Tab URL" redirect extensions but this one is stripped down to the bare essentials. There are 4 options available:
- URL you want the new tab URL to be
- whether you want the URL to be auto-highlighted/selected on new tab page load (or if you want the focus on new tab load to be on your page)
- whether you wish to enable a light mode theme (it currently defaults to a dark theme)
- whether chrome should sync this setting

Note: If your new tab url is a local file (i.e. it starts with "file://" rather than "http://") then you will have to enable the "Allow access to file URLs" permission for this extension on the Manage Extensions page.

See source code here: https://github.com/zach-adams/simple-new-tab-url
Icon is "redo" by Mohamed Riyaz Ali from the Noun Project
https://thenounproject.com/term/redo/1175677/                    

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

Όνομα Simple New Tab URL Simple New Tab URL
ID pkklffjkfmhpoiepobbldnadjflciinb
Επίσημο URL https://chromewebstore.google.com/detail/simple-new-tab-url/pkklffjkfmhpoiepobbldnadjflciinb
Περιγραφή Simply set the URL you want new tabs to load and it'll load it. No fluff.
Μέγεθος Αρχείου 13.16 KB
Αριθμός Εγκαταστάσεων 316
Τρέχουσα Έκδοση 1.2.1
Τελευταία Ενημέρωση 2023-11-28
Ημερομηνία Δημοσίευσης 2020-09-09
Αξιολόγηση 5.00/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής https://zach-adams.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/zach-adams/simple-new-tab-url
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/zach-adams/simple-new-tab-url/issues
URL της Σελίδας Πολιτικής Απορρήτου https://zach-adams.com/privacy-policy/chrome-extensions.txt
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simple New Tab URL",
    "short_name": "New Tab URL",
    "description": "Simply set the URL you want new tabs to load and it'll load it. No fluff.",
    "version": "1.2.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "homepage_url": "https:\/\/github.com\/zach-adams\/simple-new-tab-url",
    "minimum_chrome_version": "88",
    "options_page": "options.html",
    "chrome_url_overrides": {
        "newtab": "redirect.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "blank.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}