Skip to content

Instantly share code, notes, and snippets.

@sibnerian
Created April 3, 2015 07:08
Show Gist options
  • Save sibnerian/9a30943dd0877f71de8b to your computer and use it in GitHub Desktop.
Save sibnerian/9a30943dd0877f71de8b to your computer and use it in GitHub Desktop.
// when the extention is installed...
chrome.runtime.onInstalled.addListener(function() {
// replace all existing rules...
chrome.declarativeContent.onPageChanged.removeRules(undefined, function () {
// with these new rules:
chrome.declarativeContent.onPageChanged.addRules([
{
conditions: [],
actions: [ new chrome.declarativeContent.ShowPageAction() ]
}
]);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment