following is my manifest.json file
{ "name": "Demo Extension", "version": "1.0.0", "manifest_version": 2, "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": ["jquery-1.7.2.js","code.js"] }, "content_scripts": [ { "matches": ["*://*/*"], "js": ["jquery-1.7.2.js","content.js"], "css": ["panel.css"], "run_at": "document_end" } ], "permissions": [ "webRequest", "tabs", "http://*/*", "https://*/*", ] }My main extension logic is in the code.js file and even the results are available over there. Now i have to dsiplay those results in a table to the users. What will you suggest me to do.
I have no clue what to do. Just i know that i have to build a UI and display my table on to it.
Thanking you all in advance :)
--
You received this message because you are subscribed to the Google Groups "Chromium-extensions" group.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msg/chromium-extensions/-/8OAhCS4axAkJ.
To post to this group, send email to chromium-...@chromium.org.
To unsubscribe from this group, send email to chromium-extens...@chromium.org.
For more options, visit this group at http://groups.google.com/a/chromium.org/group/chromium-extensions/?hl=en.