曜日チェッカー

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

曜日チェッカー란 무엇입니까?

曜日チェッカー은(는) prrknh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "サイト上の日付の曜日をチェックできます"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

曜日チェッカー 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

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

확장 프로그램 기본 정보

이름 曜日チェッカー 曜日チェッカー
ID chlmgjghfeamkmgbnklkbidnhbfmaonj
공식 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
설명 サイト上の日付の曜日をチェックできます
파일 크기 109 KB
설치 횟수 143
현재 버전 1.0.5
최근 업데이트 2022-01-11
출시 날짜 2021-03-28
평점 5.00/5 총 3 개의 평점
개발자 prrknh
이메일 [email protected]
결제 유형 free
지원되는 언어 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'"
}