Hi,
I made a little add-ons for google chrome and this my first time. Can you give a little help for this?.
Here’s the “manifest.json” code
Here’s the “popup.html” codeHTML Code:{ “name”: “Links”, “description”: “Most Famous links easy to access.”, “version”: “1.0″, “icons”: { “128″: “icon_128.png” }, “browser_action”: { “default_icon”: “icon.png”, “default_title”: “Click here to access links”, “popup”: “popup.html” } }
Now I want to open this “popup.html” file. I mean if I click this add-ons one time it must open always till I click it again. Can you describe how to do it PLEASE.HTML Code:<html> <head> <style> ul{ list-style-type:none; padding-left:0px 0px 0px 20px; margin:0px; } </style> </head> <body> <ul> <li><a href="http://www.google.com/" target="_blank">Google</a></li> <li><a href="http://www.Yahoo.com/" target="_blank">Yahoo</a></li> </ul> </body> </html>


LinkBack URL
About LinkBacks



Reply With Quote
