1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
mask-detector/popup.js
2017-09-20 16:21:17 +02:00

10 lines
323 B
JavaScript

chrome.tabs.query({active: true}, function (tabs) {
var url = new URL(tabs[0].url);
var key = url.protocol + "//" + url.host;
chrome.storage.local.get(key, function (result) {
if(result[key]) {
document.getElementById("lastModified").innerText = result[key].modified;
}
});
});