mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
28 lines
767 B
JSON
28 lines
767 B
JSON
{
|
|
"extensionName": {
|
|
"message": "リンクを通知する",
|
|
"description": "拡張機能の名前です。"
|
|
},
|
|
|
|
"extensionDescription": {
|
|
"message": "ユーザーがリンクをクリックした時通知を表示します。",
|
|
"description": "拡張機能の説明です。"
|
|
},
|
|
|
|
"notificationTitle": {
|
|
"message": "クリック通知",
|
|
"description": "pushのタイトルです。"
|
|
},
|
|
|
|
"notificationContent": {
|
|
"message": "$URL$がクリックされました。",
|
|
"description": "リンクをクリックした時通知を表示します。:変数$1にはurlが代入されます。",
|
|
"placeholders": {
|
|
"url" : {
|
|
"content" : "$1",
|
|
"example" : "https://developer.mozilla.org"
|
|
}
|
|
}
|
|
}
|
|
}
|