曜日チェッカー

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

What is 曜日チェッカー?

曜日チェッカー is a Chrome extension developed by prrknh, and its main feature is "サイト上の日付の曜日をチェックできます".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download 曜日チェッカー Extension CRX File

Download 曜日チェッカー extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

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

Extension Basic Information

Name 曜日チェッカー 曜日チェッカー
ID chlmgjghfeamkmgbnklkbidnhbfmaonj
Official URL 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
Description サイト上の日付の曜日をチェックできます
File Size 109 KB
Installation Count 143
Current Version 1.0.5
Last Updated 2022-01-11
Publish Date 2021-03-28
Rating 5.00/5 Total 3 Ratings
Developer prrknh
Email [email protected]
Payment Type free
Supported Languages 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'"
}