cssodt/background.js
2021-01-30 19:03:14 +03:00

15 lines
522 B
JavaScript

chrome.runtime.onInstalled.addListener(function () {
chrome.declarativeContent.onPageChanged.removeRules(undefined, function () {
chrome.declarativeContent.onPageChanged.addRules([
{
conditions: [
new chrome.declarativeContent.PageStateMatcher({
pageUrl: { hostEquals: "vk.com" },
}),
],
actions: [new chrome.declarativeContent.ShowPageAction()],
},
]);
});
});