Guest User

Untitled

a guest
May 25th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. {
  2. "manifest_version": 2,
  3.  
  4. "name": "Name",
  5. "description": "Description",
  6. "version": "1.0",
  7.  
  8. "browser_action": {
  9. "name": "Manipulate DOM",
  10. "icons": ["icon.png"],
  11. "default_icon": "icon.png",
  12. "default_popup": "index.html"
  13. },
  14. "content_scripts": [ {
  15. "js": [ "jquery.min.js", "custom.js" ],
  16. "matches": [ "http://*/*", "https://*/*"]
  17. }],
  18. "permissions": [
  19. "activeTab", "tabs", "<all_urls>", "webRequest "
  20. ]}
  21.  
  22. function hello() {
  23. chrome.tabs.executeScript({
  24. file: 'alert.js'
  25. });
  26. }
  27. document.getElementById('clickme').addEventListener('click', hello);
  28.  
  29. $('input[name="firstname"]').val('Alex');
  30. $('input[name="lastname"]').val('Jefferson');
  31. $('button[name="submit"]').trigger('click');
Add Comment
Please, Sign In to add comment