曜日チェッカー

サイト上の日付の曜日をチェックできます

Cos'è 曜日チェッカー?

曜日チェッカー è un'estensione di Chrome sviluppata da prrknh, e la sua funzione principale è "サイト上の日付の曜日をチェックできます".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione 曜日チェッカー

Scarica i file di estensione 曜日チェッカー in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        ◎ 入力文字の曜日チェク
メール本文などの日付と曜日が正しいセットなのかを確認できます。
日程調整メールなどで、相手に間違った日付や曜日を送ってしまうことを防げます。

◎ページ上の日付の曜日チェック
任意のページ上の日付を選択すると、その場でその日付の曜日を確認できます。                    

Informazioni di Base sull'Estensione

Nome 曜日チェッカー 曜日チェッカー
ID chlmgjghfeamkmgbnklkbidnhbfmaonj
URL Ufficiale https://chromewebstore.google.com/detail/%E6%9B%9C%E6%97%A5%E3%83%81%E3%82%A7%E3%83%83%E3%82%AB%E3%83%BC/chlmgjghfeamkmgbnklkbidnhbfmaonj
Descrizione サイト上の日付の曜日をチェックできます
Dimensione del File 109 KB
Conteggio Installazioni 143
Versione Corrente 1.0.5
Ultimo Aggiornamento 2022-01-11
Data di Pubblicazione 2021-03-28
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore prrknh
Email [email protected]
Tipo di Pagamento free
Lingue Supportate ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\u66dc\u65e5\u30c1\u30a7\u30c3\u30ab\u30fc",
    "description": "\u30b5\u30a4\u30c8\u4e0a\u306e\u65e5\u4ed8\u306e\u66dc\u65e5\u3092\u30c1\u30a7\u30c3\u30af\u3067\u304d\u307e\u3059",
    "version": "1.0.5",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/default.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contents.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}