Insert Timestamp

Insert Timestamp

Qu'est-ce que Insert Timestamp ?

Insert Timestamp est une extension Chrome développée par Dave Xu, et sa fonction principale est "Insert Timestamp".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Insert Timestamp

Téléchargez les fichiers d'extension Insert Timestamp au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Insert Timestamp Insert Timestamp
ID hojacnchclkfkdkcadnfogedeppclijb
URL Officiel https://chrome.google.com/webstore/detail/insert-timestamp/hojacnchclkfkdkcadnfogedeppclijb
Description Insert Timestamp
Taille du Fichier 8.5 KB
Nombre d'Installations 21
Version Actuelle 1.1
Dernière Mise à Jour 2015-01-28
Date de Publication 2015-01-28
Évaluation 4.00/5 Total 1 Évaluations
Développeur Dave Xu
Type de Paiement free
Site Web de l'Extension http://www.linkedin.com/in/yuandaxu
URL de la Page d'Aide http://xuyuanda.blogspot.com
Langues Prises en Charge 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"
        }
    ]
}