1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-18 17:02:27 +02:00

use name in manifest for "About" pane

This commit is contained in:
Raymond Hill 2018-05-17 12:45:57 -04:00
parent 22c5147f7c
commit 21670a031f
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -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':