I have a add this chrome extension in to Chrome. I took the extension code from here. Now I want to trigger this extension from my web page "tack shot" button click something like following:
<html>
<head>
<script>
function takeShot(){
//code to trigger chrome extension script.
}
</script>
</head>
<body>
<button onClick='takeShot()'>take shot</button>
</body>
</html>
Can anybody help me to resolve this?