Pimp your 'New Tab'

Pimp your 'New Tab' - open any website or URL!

¿Qué es Pimp your 'New Tab'?

Pimp your 'New Tab' es una extensión de Chrome desarrollada por jimmyff, y su función principal es "Pimp your 'New Tab' - open any website or URL!".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Pimp your 'New Tab'

Descarga archivos de extensión Pimp your 'New Tab' en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        A super simple extension that allows you to customise your 'New Tab' page by setting it to redirect to a specific URL or website. I created this as the other New Tab redirect extensions all seem to be full of spyware! 

View & download the source code:
https://github.com/jimmyff/chome-new-tab

Permission explanation: The extension requires the 'Storage' permission to save your desired URL and the 'Tab' permission to change the URL of your 'New Tab' page. I could remove the tab permission and use the 'new tab override' method but if I did it this way, there would be no way to disable the custom page without disabling the whole extension. Also it would not put the cursor in the address bar. When Chrome adds functionality to allow temporary overrides I will change the implementation to support it.

 Happy pimpin! ^_^                    

Información Básica de la Extensión

Nombre Pimp your 'New Tab' Pimp your 'New Tab'
ID bafonlnpjoogacbjiffcbadecdgamjgb
URL Oficial https://chromewebstore.google.com/detail/pimp-your-new-tab/bafonlnpjoogacbjiffcbadecdgamjgb
Descripción Pimp your 'New Tab' - open any website or URL!
Tamaño del Archivo 7.93 KB
Cantidad de Instalaciones 158
Versión Actual 1.0.2
Última Actualización 2016-02-24
Fecha de Publicación 2016-02-24
Calificación 4.10/5 Total de 10 Calificaciones
Desarrollador jimmyff
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_popup": "options.html"
    },
    "description": "Pimp your 'New Tab' - open any website or URL!",
    "icons": {
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "name": "Pimp your 'New Tab'",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "storage"
    ],
    "version": "1.0.2"
}