7 lines
199 B
JavaScript
7 lines
199 B
JavaScript
|
'use strict';
|
||
|
|
||
|
document.body.textContent =
|
||
|
chrome.i18n.getMessage('dysfunctional');
|
||
|
document.body.appendChild(document.createElement('div')).textContent =
|
||
|
chrome.runtime.getURL('manifest.json');
|