Skip to content

Instantly share code, notes, and snippets.

@mitchallen
Last active February 26, 2023 20:07
Show Gist options
  • Save mitchallen/59e974dde61e8ff839867d865c98a10f to your computer and use it in GitHub Desktop.
Save mitchallen/59e974dde61e8ff839867d865c98a10f to your computer and use it in GitHub Desktop.
Example content.js file for a Chrome Extension
console.log("Hello, world!");
chrome.storage.sync.get("color", function(data) {
var color = data.color || "#ffffff";
document.body.style.backgroundColor = color;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment