• Welcome to ForumKorner!
    Join today and become a part of the community.

Website Help

Yeti

Active Member
Reputation
0
Hello, I need an EXTREMELY simple website built. Well all it is a button that adds my chrome extension to someone's browser.

There is a full tutorial on how to do it here: https://developers.google.com/chrome/web-store/docs/inline_installation

if you could help me build a web page with just a button on it I would be forever happy. Thank you so much!
I can even pay if needed.
 

Doug

User is banned.
Reputation
0
I'll do this for you, give me a minute to hop on my pc

PHP:
<html>
 <head>
  <link rel="chrome-webstore-item" href="YOUR CHROME LINK HERE">
 </head>
 </body>
 

<button type="button" id='install-button' onclick='chrome.webstore.install()'>Click to install</button>

idk if I read the documentation correctly but that should work try that.
 

Yeti

Active Member
Reputation
0
Doug said:
I'll do this for you, give me a minute to hop on my pc

PHP:
<html>
 <head>
  <link rel="chrome-webstore-item" href="YOUR CHROME LINK HERE">
 </head>
 </body>
 

<button type="button" id='install-button' onclick='chrome.webstore.install()'>Click to install</button>

idk if I read the documentation correctly but that should work try that.

it did not work because I think you need to call in a javascript function which Idk how to do, lol.
 

Sapphire

Power member.
Reputation
0
I could help you something similar to doing this.

The outcome may be different from what you want so it's up to you.

(I'd choose @"Doug", because I'm too lazy) :p
 
Top