曜日チェッカー
サイト上の日付の曜日をチェックできます
Wat is 曜日チェッカー?
曜日チェッカー is een Chrome-extensie ontwikkeld door prrknh, en de belangrijkste functie is "サイト上の日付の曜日をチェックできます".
Extensie Screenshots
Download het CRX-bestand van de extensie 曜日チェッカー
Download 曜日チェッカー-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
◎ 入力文字の曜日チェク
メール本文などの日付と曜日が正しいセットなのかを確認できます。
日程調整メールなどで、相手に間違った日付や曜日を送ってしまうことを防げます。
◎ページ上の日付の曜日チェック
任意のページ上の日付を選択すると、その場でその日付の曜日を確認できます。 Basisinformatie over de Extensie
| Naam | |
| ID | chlmgjghfeamkmgbnklkbidnhbfmaonj |
| Officiële 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 |
| Beschrijving | サイト上の日付の曜日をチェックできます |
| Bestandsgrootte | 109 KB |
| Aantal Installaties | 143 |
| Huidige Versie | 1.0.5 |
| Laatst Bijgewerkt | 2022-01-11 |
| Publicatiedatum | 2021-03-28 |
| Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | prrknh |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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'"
} | |