Week

Week displays an icon with the current week number in the chrome toolbar

Co je Week?

Week je rozšíření Chrome vyvinuté Urban Björkman, a jeho hlavní funkcí je „Week displays an icon with the current week number in the chrome toolbar“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Week

Stáhněte si soubory rozšíření Week ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Displays current week number as an extension icon in Chrome toolbar

get the source on github
https://github.com/UrbanBjorkman/Week-Chrome-Extension                    

Základní Informace o Rozšíření

Název Week Week
ID kjkhipoiijminfemfjeaccjonihcgfni
Oficiální URL https://chromewebstore.google.com/detail/week/kjkhipoiijminfemfjeaccjonihcgfni
Popis Week displays an icon with the current week number in the chrome toolbar
Velikost souboru 1.19 MB
Počet instalací 34
Aktuální Verze 0.5
Poslední Aktualizace 2014-10-21
Datum Vydání 2014-10-21
Hodnocení 2.67/5 Celkem 3 Hodnocení
Vývojář Urban Björkman
Typ Platby free
Webové stránky Rozšíření https://github.com/UrbanBjorkman/Week-Chrome-Extension
URL Stránky Nápovědy https://github.com/UrbanBjorkman/Week-Chrome-Extension
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "jquery-2.1.1.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery-2.1.1.min.js",
                "week.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "Week displays an icon with the current week number in the chrome toolbar",
    "manifest_version": 2,
    "name": "Week",
    "short_name": "Week",
    "version": "0.5",
    "icons": {
        "128": "images\/logo128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Week",
        "default_popup": "week.html"
    }
}