Skip to content

Instantly share code, notes, and snippets.

View Adeohluwa's full-sized avatar

Ade Adeohluwa

  • Remote
View GitHub Profile
@jfversluis
jfversluis / background.js
Created October 24, 2018 19:39
Lighting up my toolbar icon at the Microsoft Docs page
chrome.declarativeContent.onPageChanged.removeRules(undefined, function () {
chrome.declarativeContent.onPageChanged.addRules([{
conditions: [new chrome.declarativeContent.PageStateMatcher({
pageUrl: { hostEquals: 'docs.microsoft.com' },
})
],
actions: [new chrome.declarativeContent.ShowPageAction()]
}]);
});