Initial Commit

🎉
* Adds Manifest for Extension
* Adds barebone messaging from extension and front-end
* Adds .env to run react app under CSP
This commit is contained in:
Indrajith K L
2019-07-12 19:59:42 +05:30
parent 481bbb5a22
commit fa8316a94c
11 changed files with 190 additions and 94 deletions

16
public/page.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<h2>Ola</h2>
<div id="renderArea"></div>
<button id="sendMessage">Send Message</button>
<script src="./content_script.js"></script>
</body>
</html>