Old New Tab

Replaces the new tab page in an attempt to replicate the old new tab page.

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

Το Old New Tab είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Keith Richards, και η κύρια λειτουργία του είναι "Replaces the new tab page in an attempt to replicate the old new tab page.".

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

screenshot
screenshot

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

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

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

                        This brings back the old new tab page, as much as we possibly could.

Where can I view the source of this extension?
==============================================
This extension is open source and available on GitHub at https://github.com/kevin-brown/chrome-old-new-tab.

What are all of these permissions for?
======================================
**Access the icons of the websites you visit.** - This is needed to get the favicons of websites that will be visible in the [future] bookmarks bar and website listing.
**Read and modify your bookmarks** - Chrome does not allow read-only access in settings, which is why this also gives the permission to modify bookmarks.  This permission is needed in order to retrieve the bookmarks which will be used for the [future] bookmarks bar.
**Read and modify your browsing history** - Once again, chrome does not allow read-only access.  This is requested in order to retrieve the list of top websites you access.  We do not do anything to the data other than read it.
**Manage your apps, extensions, and themes** - The apps page allows you to manage your apps, anything from viewing the options to removing them, which is why this permission is required.  This extension will only read the data for apps, along with allowing for the removal of apps through that page, which all requires user input.

Why are the thumbnails not visible on the top sites tab?
========================================================
In order to generate the thumbnails on the top sites tab, Chrome requires access to a separate namespace which will generate the thumbnails.  There is currently no way to grant an extension access to this page, so the thumbnails are currently defaulted to the what they would normally look like if the thumbnail could not be loaded.  This may change in the future, but currently it is not possible.                    

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

Όνομα Old New Tab Old New Tab
ID klcijojgndghhnmkifealgnjgmclghio
Επίσημο URL https://chromewebstore.google.com/detail/old-new-tab/klcijojgndghhnmkifealgnjgmclghio
Περιγραφή Replaces the new tab page in an attempt to replicate the old new tab page.
Μέγεθος Αρχείου 1.44 MB
Αριθμός Εγκαταστάσεων 815
Τρέχουσα Έκδοση 0.1.2
Τελευταία Ενημέρωση 2014-03-15
Ημερομηνία Δημοσίευσης 2014-03-14
Αξιολόγηση 3.93/5 Συνολικά 14 Αξιολογήσεις
Προγραμματιστής Keith Richards
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/kevin-brown/chrome-old-new-tab
Υποστηριζόμενες Γλώσσες de,en,fr,tr,es,it,pt-BR,ru,ar,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Old New Tab",
    "short_name": "ONT",
    "description": "Replaces the new tab page in an attempt to replicate the old new tab page.",
    "default_locale": "en",
    "version": "0.1.2",
    "chrome_url_overrides": {
        "newtab": "main.html"
    },
    "permissions": [
        "storage",
        "topSites",
        "management",
        "bookmarks",
        "chrome:\/\/favicon\/"
    ],
    "icons": {
        "200": "images\/icon200.png",
        "128": "images\/icon128.png",
        "19": "images\/icon19.png"
    },
    "incognito": "split",
    "minimum_chrome_version": "22"
}