mirror of
https://github.com/wassname/RubberGlove.git
synced 2026-07-30 12:00:08 +08:00
8 lines
334 B
JavaScript
8 lines
334 B
JavaScript
window.addEventListener('load', function() {
|
|
var extensionVersion = document.getElementById('extensionVersion');
|
|
extensionVersion.appendChild(document.createTextNode(chrome.app.getDetails().version));
|
|
|
|
var bomViewer = document.getElementById("bomViewer");
|
|
bomViewer.href = chrome.runtime.getURL("/html/bomViewer.html");
|
|
});
|