New Tab Redirect
Redirects your 'new tab' to an external website.
Τι είναι το New Tab Redirect;
Το New Tab Redirect είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://joshuahemphill.com, και η κύρια λειτουργία του είναι "Redirects your 'new tab' to an external website.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης New Tab Redirect
Λήψη αρχείων επέκτασης New Tab Redirect σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
A basic extension to redirect the 'New Tab' to an external site of your choosing. Make sure you keep seeing your notes or important info when you're browsing. A minimal extension; no background scripts or unnecessary permissions. For issues and suggestions open a github issue. Backend Description: The extension implements a temporary 'New Tab Page' that when loaded, immediately queries the extension storage for your set redirect page, and then proceeds to redirect. Removed any background scripts so that it only runs when you initiate it.
Βασικές Πληροφορίες Επέκτασης
Όνομα | New Tab Redirect |
ID | gjhaadblnhgegfaegeekjlhaciebchfk |
Επίσημο URL | https://chromewebstore.google.com/detail/new-tab-redirect/gjhaadblnhgegfaegeekjlhaciebchfk |
Περιγραφή | Redirects your 'new tab' to an external website. |
Μέγεθος Αρχείου | 32.8 KB |
Αριθμός Εγκαταστάσεων | 504 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2020-11-25 |
Ημερομηνία Δημοσίευσης | 2020-02-19 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | https://joshuahemphill.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/josh-hemphill/redirect-newtab-ext |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/josh-hemphill/redirect-newtab-ext |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "New Tab Redirect", "description": "Redirects your 'new tab' to an external website.", "version": "1.1", "author": "Joshua Hemphill", "browser_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "default_title": "New-Tab Redirect", "default_popup": "popup\/index.html" }, "offline_enabled": false, "short_name": "Tab Redirect", "permissions": [ "storage" ], "chrome_url_overrides": { "newtab": "tab-redirect\/index.html" } } |