Week

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

Co to jest Week?

Week to rozszerzenie Chrome opracowane przez Urban Björkman, a jego główną funkcją jest „Week displays an icon with the current week number in the chrome toolbar”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Week

Pobierz pliki rozszerzeń Week w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Displays current week number as an extension icon in Chrome toolbar

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

Podstawowe informacje o rozszerzeniu

Nazwa Week Week
ID kjkhipoiijminfemfjeaccjonihcgfni
Oficjalny URL https://chromewebstore.google.com/detail/week/kjkhipoiijminfemfjeaccjonihcgfni
Opis Week displays an icon with the current week number in the chrome toolbar
Rozmiar pliku 1.19 MB
Liczba instalacji 34
Aktualna Wersja 0.5
Ostatnia Aktualizacja 2014-10-21
Data Publikacji 2014-10-21
Ocena 2.67/5 Łącznie 3 Oceny
Deweloper Urban Björkman
Typ Płatności free
Strona Rozszerzenia https://github.com/UrbanBjorkman/Week-Chrome-Extension
Adres URL Strony Pomocy https://github.com/UrbanBjorkman/Week-Chrome-Extension
Obsługiwane Języki 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"
    }
}