Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am in the process of building a Chrome extension, and for the whole thing to work the way I would like it to, I need an external JavaScript script to be able to detect if a user has my extension installed.

For example: A user installs my plugin, then goes to a website with my script on it. The website detects that my extension is installed and updates the page accordingly.

Is this possible?

share|improve this question
Yes, it is possible to detect extensions, so long as you know your extension ID (which I'm sure you do). Check this site for more information: blog.kotowicz.net/2012/02/intro-to-chrome-addons-hacking.html Skip down to the section on 'Finding your addons one by one'. Good luck! – Martin Hughes Feb 29 '12 at 23:14

6 Answers

up vote 8 down vote accepted

I am sure there is a direct way (calling functions on your extension directly, or by using the JS classes for extensions), but an indirect method (until something better comes along):

Have your Chrome extension look for a specific DIV or other element on your page, with a very specific ID.

For example:

<div id="ExtensionCheck_JamesEggersAwesomeExtension"></div>

Do a getElementById and set the innerHTML to the version number of your extension or something. You can then read the contents of that client-side.

Again though, you should use a direct method if there is one available.


EDIT: Direct method found!!

Use the connection methods found here: http://code.google.com/chrome/extensions/extension.html#global-events

Untested, but you should be able to do...

var myPort=chrome.extension.connect('yourextensionid_qwerqweroijwefoijwef', some_object_to_send_on_connect);
share|improve this answer
thanks :) I'll try that now – James Eggers Jun 9 '11 at 13:41
hmmm chrome.extension.connect only seems to work when executed from within the extension (or any extension). I need it to work from any random js script. Any ideas? – James Eggers Jun 9 '11 at 13:55
@James: Random or arbitrary? – Lightness Races in Orbit Jun 9 '11 at 14:01
Strange, the documentation says it should work. "Unlike the other chrome.* APIs, parts of chrome.extension can be used by content scripts" and it lists sendRequest(), onRequest, connect(), onRequest, and getURL(). – Brad Jun 9 '11 at 14:01
@James are you executing the script that uses .connect() from a hosted script? I know Chrome tries hard not to do stuff with just local files that aren't hosted for security purposes. - Just checking. – JamesEggers Jun 9 '11 at 14:13
show 9 more comments

Another possible solution if you own the website is to use inline installation.

if (chrome.app.isInstalled) {
  // extension is installed.
}

I know this an old question but this way was introduced in Chrome 15 and so I thought Id list it for anyone only now looking for an answer.

share|improve this answer

I thought I would share my research on this. I needed to be able to detect if a specific extension was installed for some file:/// links to work. I came across this article here This explained a method of getting the manifest.json of an extension.

I adjusted the code a bit and came up with:

   function Ext_Detect_NotInstalled(ExtName,ExtID) {
   console.log(ExtName + ' Not Installed');
   if (divAnnounce.innerHTML  != '')
   divAnnounce.innerHTML = divAnnounce.innerHTML + "<BR>"

   divAnnounce.innerHTML = divAnnounce.innerHTML + 'Page needs ' + ExtName + ' Extension -- to intall the LocalLinks extension click <a href="https://chrome.google.com/webstore/detail/locallinks/' + ExtID +'">here</a>';
  }

  function Ext_Detect_Installed(ExtName,ExtID) {
    console.log(ExtName + ' Installed');
  }

  var Ext_Detect = function(ExtName,ExtID) {
    var s = document.createElement('script');
    s.onload = function(){Ext_Detect_Installed(ExtName,ExtID);};
    s.onerror = function(){Ext_Detect_NotInstalled(ExtName,ExtID);};
    s.src = 'chrome-extension://' + ExtID + '/manifest.json';
    document.body.appendChild(s);
  }

 var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;

 if (is_chrome==true)
 {
  window.onload = function() { Ext_Detect('LocalLinks','jllpkdkcdjndhggodimiphkghogcpida');};
 }

With this you should be able to use Ext_Detect(ExtensionName,ExtensionID) to detect the installation of any number of extensions.

share|improve this answer

You could have the extension set a cookie and have your websites JavaScript check if that cookie is present and update accordingly. This and probably most other methods mentioned here could of course be cirvumvented by the user, unless you try and have the extension create custom cookies depending on timestamps etc, and have your application analyze them server side to see if it really is a user with the extension or someone pretending to have it by modifying his cookies.

share|improve this answer
I'll try that too thanks ;) – James Eggers Jun 9 '11 at 13:47

Your extension could interact with the website (e.g. changing variables) and your website could detect this.

But there should be a better way to do this. I wonder how Google is doing it on there extension gallery (already installed applications are marked).

Edit:

The gallery use the chrome.management.get function. Example:

chrome.management.get("mblbciejcodpealifnhfjbdlkedplodp", function(a){console.log(a);});

But you can only access the method from pages with the right permissions.

share|improve this answer
ye that would require the extension to interact with every site on every tab which would be slow/difficult to implement and buggy :-/ – James Eggers Jun 9 '11 at 13:40
The problem is that communication in the other direction (page to extension) is not possible, because of the security model of chrome. If you don't want to go the 'interacting' way, take the cookie way. – Fox32 Jun 9 '11 at 14:14

There's another method shown at this Google Groups post. In short, you could try detecting whether the extension icon loads successfully. This may be helpful if the extension you're checking for isn't your own.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.