Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have to write an extension for saving user credentials to my database server (like in LastPass). How can I catch submit action from authentication form on active tab to grab entered login and password for saving using my extension and show dialog to a user, if he wants to save credentials or not?

share|improve this question

1 Answer

up vote 1 down vote accepted

Add a content script in your manifest and set it to run on some webpage:

"content_scripts": [{
    "matches": ["http://*.example.com/*"],
    "js": ["form_submits.js"],
    "run_at": "document_start"
}]

Also add permissions:

"permissions": [
    "tabs", "http://*.example.com/*"
],

In this content script listen to event "onsubmit" on forms, then contact with your extension using chrome.extension.sendRequest():

for (var i = 0; i < document.forms.length; i++) {
    document.forms[i].addEventListener("submit", function(){
        var form = this.form;
        var data = [form.elements["user"], form.elements["password"]];
        // contact with your background page and send the form data.
        chrome.extension.sendRequest({'name':'form_submit', 'data':data}, function(){ /* my callback if needed */ }, false);
}

In your background script add listener to these calls:

chrome.extension.onRequest.addListener(function(request, sender, callback) {
    switch (request.name) {
         case 'form_submit':
             var data = request.data;
             // do something with your form credentials.
             break;
     }
});

*Edited.*

You could also execute javascript directly on current active Tab and add form submit listeners:

First get the current window and active tab:

chrome.windows.getCurrent(function callback)
chrome.tabs.getSelected(integer windowId, function callback)

http://code.google.com/chrome/extensions/windows.html#method-getCurrent

http://code.google.com/chrome/extensions/tabs.html#method-getSelected

Then execute javascript in it:

chrome.tabs.executeScript(integer tabId, object details, function callback)

http://code.google.com/chrome/extensions/tabs.html#method-executeScript

A comprehensive google chrome extensions api is here:

http://code.google.com/chrome/extensions/getstarted.html

share|improve this answer
It`s not exactly what I need, but thank you for making me understand the mechanism of interaction – Karazyabko Nov 15 '11 at 15:18
@Karazyabko: then what is exactly that you need? I've edited my answer. – Czarek Tomczak Nov 15 '11 at 15:32
thanks, here it is – Karazyabko Nov 16 '11 at 12:32

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.