mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
28 lines
654 B
JSON
28 lines
654 B
JSON
{
|
|
"extensionName": {
|
|
"message": "Notify link clicks i18n",
|
|
"description": "Name of the extension."
|
|
},
|
|
|
|
"extensionDescription": {
|
|
"message": "Shows a notification when the user clicks on links.",
|
|
"description": "Description of the extension."
|
|
},
|
|
|
|
"notificationTitle": {
|
|
"message": "Click notification",
|
|
"description": "Title of the click notification."
|
|
},
|
|
|
|
"notificationContent": {
|
|
"message": "You clicked $URL$.",
|
|
"description": "Tells the user which link they clicked.",
|
|
"placeholders": {
|
|
"url" : {
|
|
"content" : "$1",
|
|
"example" : "https://developer.mozilla.org"
|
|
}
|
|
}
|
|
}
|
|
}
|