Insert Timestamp

Insert Timestamp

O que é Insert Timestamp?

Insert Timestamp é uma extensão do Chrome desenvolvida por Dave Xu, e sua principal característica é "Insert Timestamp".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Insert Timestamp

Baixe arquivos de extensão Insert Timestamp no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Insert Timestamp Insert Timestamp
ID hojacnchclkfkdkcadnfogedeppclijb
URL Oficial https://chrome.google.com/webstore/detail/insert-timestamp/hojacnchclkfkdkcadnfogedeppclijb
Descrição Insert Timestamp
Tamanho do Arquivo 8.5 KB
Contagem de Instalações 21
Versão Atual 1.1
Última Atualização 2015-01-28
Data de Publicação 2015-01-28
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor Dave Xu
Tipo de Pagamento free
Site da Extensão http://www.linkedin.com/in/yuandaxu
URL da Página de Ajuda http://xuyuanda.blogspot.com
Idiomas Suportados 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"
        }
    ]
}