/**
* @file The background script of the plugin. Registers the button to wikipedia sites and is always active.
*/
// When the extension is installed or upgraded ...
chrome.runtime.onInstalled.addListener(function() {
// Replace all rules ...
chrome.declarativeContent.onPageChanged.removeRules(undefined, function() {
// With a new rule ...
chrome.declarativeContent.onPageChanged.addRules([
{
// That fires when a page's URL contains wikipedia
conditions: [
new chrome.declarativeContent.PageStateMatcher({
pageUrl: { urlContains: 'en.wikipedia.org/wiki/' },
})
],
// And shows the extension's page action.
actions: [ new chrome.declarativeContent.ShowPageAction() ]
}
]);
});
});