background.js 530 B

1234567891011121314
  1. chrome.runtime.onInstalled.addListener(function() {
  2. chrome.storage.sync.set({color: '#3aa757'}, function() {
  3. console.log("The color is green.");
  4. });
  5. chrome.declarativeContent.onPageChanged.removeRules(undefined, function() {
  6. chrome.declarativeContent.onPageChanged.addRules([{
  7. conditions: [new chrome.declarativeContent.PageStateMatcher({
  8. pageUrl: {hostEquals: 'developer.chrome.com'},
  9. })
  10. ],
  11. actions: [new chrome.declarativeContent.ShowPageAction()]
  12. }]);
  13. });
  14. });