Question: Hello, I'm creating a chrome extension application for a term long project. I've gotten code to work as a regular HTML page, but I'm struggling

Hello, I'm creating a chrome extension application for a term long project. I've gotten code to work as a regular HTML page, but I'm struggling to get it to work as a Chrome Extension. Can someone help? Right now it's not adding the list underneath the text input box. Thank you! ---manifest.json--- { "name": "Task Popup Test", "description": "Allows user to enter in tasks to a list", "version": "1.0", "manifest_version": 2, "permissions": ["alarms", "notifications", "storage"], "background": { "scripts": ["background.js"], "persistent": false }, "browser_action": { "default_icon": "to-do.png", "default_title": "Tasks To Do", "default_popup": "popup.html" } }

--------------

---popup.html---

To-Do List

Add

------------

---popup.js---

'use strict';

--------------------

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!