headless_chrome 1.0.21

Control Chrome programmatically
Documentation
1
2
3
4
5
chrome.runtime.onInstalled.addListener(function() {
    chrome.storage.sync.set({color: '#3aa757'}, function() {
      console.log("The color is green.");
    });
  });