Skip to content

Instantly share code, notes, and snippets.

@gudmundurarnar
Created April 4, 2018 16:07
Show Gist options
  • Save gudmundurarnar/8a8805b4a5060f6492937c574167f88a to your computer and use it in GitHub Desktop.
Save gudmundurarnar/8a8805b4a5060f6492937c574167f88a to your computer and use it in GitHub Desktop.
Chromium vanilla extension
<!DOCTYPE html>
<html>
<body>
<webview src="http://sau.no"></webview>
</body>
</html>
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html');
});
{
"manifest_version": 2,
"name": "scrolling extension",
"version": "1.0",
"permissions": ["webview"],
"app": {
"background": {
"scripts": ["main.js"]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment