mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-11-11 07:38:58 +01:00
parent
0d1738d328
commit
391deae6f1
@ -8,6 +8,19 @@
|
||||
"description": ""
|
||||
},
|
||||
|
||||
"browserAction_title_default": {
|
||||
"message": "CanvasBlocker",
|
||||
"description": ""
|
||||
},
|
||||
"browserAction_title_notified": {
|
||||
"message": "CanvasBlocker\n\nSchutz erfolgreich für:",
|
||||
"description": ""
|
||||
},
|
||||
"browserAction_title_protectedAPIs": {
|
||||
"message": "\n \u00B7 {api}",
|
||||
"description": ""
|
||||
},
|
||||
|
||||
"more": {
|
||||
"message": "mehr",
|
||||
"description": ""
|
||||
|
@ -8,6 +8,19 @@
|
||||
"description": ""
|
||||
},
|
||||
|
||||
"browserAction_title_default": {
|
||||
"message": "CanvasBlocker",
|
||||
"description": ""
|
||||
},
|
||||
"browserAction_title_notified": {
|
||||
"message": "CanvasBlocker\n\nprotection successful for:",
|
||||
"description": ""
|
||||
},
|
||||
"browserAction_title_protectedAPIs": {
|
||||
"message": "\n \u00B7 {api}",
|
||||
"description": ""
|
||||
},
|
||||
|
||||
"more": {
|
||||
"message": "more",
|
||||
"description": ""
|
||||
|
@ -67,11 +67,11 @@
|
||||
|
||||
let apiList = "";
|
||||
apis.forEach(function(api){
|
||||
apiList += "\n \u00B7 " + api;
|
||||
apiList += browser.i18n.getMessage("browserAction_title_protectedAPIs").replace(/{api}/g, api);
|
||||
});
|
||||
browser.browserAction.setTitle({
|
||||
tabId: tabId,
|
||||
title: "CanvasBlocker" + apiList
|
||||
title: browser.i18n.getMessage("browserAction_title_notified") + apiList
|
||||
});
|
||||
};
|
||||
|
||||
@ -93,7 +93,7 @@
|
||||
});
|
||||
browser.browserAction.setTitle({
|
||||
tabId: tabId,
|
||||
title: "CanvasBlocker"
|
||||
title: browser.i18n.getMessage("browserAction_title_default")
|
||||
});
|
||||
};
|
||||
|
||||
|
@ -57,7 +57,7 @@
|
||||
"browser_action": {
|
||||
"browser_style": false,
|
||||
"default_icon": "icons/browserAction-notPrinted.svg",
|
||||
"default_title": "CanvasBlocker",
|
||||
"default_title": "__MSG_browserAction_title_default__",
|
||||
"default_popup": "browserAction/browserAction.html"
|
||||
},
|
||||
"page_action": {
|
||||
|
Loading…
Reference in New Issue
Block a user