mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
use name in manifest for "About" pane
This commit is contained in:
parent
22c5147f7c
commit
21670a031f
1 changed files with 4 additions and 1 deletions
|
|
@ -127,7 +127,10 @@ var onMessage = function(request, sender, callback) {
|
|||
break;
|
||||
|
||||
case 'getAppData':
|
||||
response = {name: vAPI.app.name, version: vAPI.app.version};
|
||||
response = {
|
||||
name: chrome.runtime.getManifest().name,
|
||||
version: vAPI.app.version
|
||||
};
|
||||
break;
|
||||
|
||||
case 'getDomainNames':
|
||||
|
|
|
|||
Loading…
Reference in a new issue