Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. {
  2. "background": {
  3. "scripts": [ "jquery.min.js", "background.js"]
  4. },
  5. "browser_action": {
  6. "default_icon": "icon128.png",
  7. "default_title": "Test"
  8. },
  9. "description": "Make API's from regular websites",
  10. "icons": {
  11. "128": "icon128.png",
  12. "16": "icon16.png",
  13. "48": "icon48.png"
  14. },
  15.  
  16. "manifest_version": 2,
  17. "name": "Test",
  18. "permissions": [ "tabs", "http://*/*", "https://*/*" ],
  19. "version": "0.2"
  20. }
  21.  
  22. chrome.browserAction.onClicked.addListener(function(tab) {
  23. chrome.tabs.executeScript(tab.id, {file: "bookmarklet.js"})
  24. });
  25.  
  26. (function() {
  27. console.log($('.stuff'))
  28. console.log(document.getElementById('yt-masthead'))
  29. //open('http://www.google.com/'+encodeURIComponent(document.location.href),'_self').focus();
  30. }
  31. )();
  32.  
  33. chrome.browserAction.onClicked.addListener(function(tab) {
  34. chrome.tabs.executeScript(tab.id, {file: "jquery.min.js"}, function(){
  35. chrome.tabs.executeScript(tab.id, {file: "bookmarklet.js"});
  36. });
  37. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement