Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 15th, 2012  |  syntax: None  |  size: 0.44 KB  |  hits: 21  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. google chrome, close tab event listener
  2. chrome.tabs.onRemoved.addListener(function (tabId) {
  3.    alert(tabId);
  4. });
  5.        
  6. {
  7. "name": "WebHistory Extension",
  8. "version": "1.0",
  9. "manifest_version": 2,
  10. "description": "storing webhistory",
  11.     "content_scripts":[
  12.         {
  13.             "matches": ["http://*/*"],
  14.             "js": ["jquery-1.7.min.js","myscript.js"],
  15.             "run_at": "document_end"
  16.         }
  17.     ],
  18.     "permissions" : ["tabs"]
  19. }