Insert Timestamp

Insert Timestamp

¿Qué es Insert Timestamp?

Insert Timestamp es una extensión de Chrome desarrollada por Dave Xu, y su función principal es "Insert Timestamp".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Insert Timestamp

Descarga archivos de extensión Insert Timestamp 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

                        2015-01-28
Dave Xu
1. better position selection
2. bigger numbers
3. bug fix : the clock cannot be seen on youtube web pages.

2015-01-21
Dave Xu
This is a simple extention, will only inject real-time clock into current webpage. 
I develop it just for some tests, wish it could be helpful for other people.                    

Información Básica de la Extensión

Nombre Insert Timestamp Insert Timestamp
ID hojacnchclkfkdkcadnfogedeppclijb
URL Oficial https://chrome.google.com/webstore/detail/insert-timestamp/hojacnchclkfkdkcadnfogedeppclijb
Descripción Insert Timestamp
Tamaño del Archivo 8.5 KB
Cantidad de Instalaciones 21
Versión Actual 1.1
Última Actualización 2015-01-28
Fecha de Publicación 2015-01-28
Calificación 4.00/5 Total de 1 Calificaciones
Desarrollador Dave Xu
Tipo de Pago free
Sitio Web de la Extensión http://www.linkedin.com/in/yuandaxu
URL de la Página de Ayuda http://xuyuanda.blogspot.com
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Insert Timestamp",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Insert Timestamp",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "activeTab",
        "*:\/\/www.youtube.com\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": false,
            "css": [
                "show.css"
            ],
            "js": [
                "cbd.js",
                "ccc.js"
            ],
            "run_at": "document_end"
        }
    ]
}