15 lines
522 B
JavaScript
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()],
|
|
},
|
|
]);
|
|
});
|
|
});
|