Created
September 26, 2016 23:58
-
-
Save ConradIrwin/8008b94d35b7bf6a32ad7fd711c48c03 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"manifest_version": 2, | |
"name": "Boop", | |
"description": "Lightning-fast gorgeous email for professionals & power users.", | |
"version": "1.0", | |
"permissions": [ | |
"background" | |
], | |
"background": { | |
"allow_js_access": false | |
}, | |
"web_accessible_resources": [ | |
"test.html" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button>click to oauth</button> | |
<script src="test.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelector('button').onclick =function () { | |
window.open('https://rawgit.com/ConradIrwin/186afe452d3883abf3f73a326d4720bc/raw/623f44e1da05a4d34d1bd72934e3721d1d41413f/best.html', '', {width: 50, height: 50, top: 50, left: 50}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment