aboutsummaryrefslogtreecommitdiff
path: root/public/content_script.js
diff options
context:
space:
mode:
authorIndrajith K L2019-07-12 19:59:42 +0530
committerIndrajith K L2019-07-12 19:59:42 +0530
commitfa8316a94c092e986b4b2616f1992ee2a3eec01a (patch)
tree94a425f0ec03570f815274ba1039ce2951578e77 /public/content_script.js
parent481bbb5a2271c521265dd20280324435854dbb12 (diff)
downloadbookmark-manager-fa8316a94c092e986b4b2616f1992ee2a3eec01a.tar.gz
bookmark-manager-fa8316a94c092e986b4b2616f1992ee2a3eec01a.tar.bz2
bookmark-manager-fa8316a94c092e986b4b2616f1992ee2a3eec01a.zip
Initial Commit
:tada: * Adds Manifest for Extension * Adds barebone messaging from extension and front-end * Adds .env to run react app under CSP
Diffstat (limited to 'public/content_script.js')
-rw-r--r--public/content_script.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/public/content_script.js b/public/content_script.js
new file mode 100644
index 0000000..612ecf5
--- /dev/null
+++ b/public/content_script.js
@@ -0,0 +1,27 @@
+(function(){
+
+ /* Open port on popup file */
+ const port = chrome.runtime.connect({
+ name: "bookmarkArranger"
+ });
+
+ /* Listen for messages on the port */
+ port.onMessage.addListener(message => {
+ console.log(message)
+ });
+
+ document.getElementById('sendMessage').addEventListener('click', ()=>{
+ /* Send a message through the port */
+ port.postMessage({
+ code: "getBookMarks"
+ });
+ })
+
+
+
+
+})();
+
+
+
+