fork download
  1. manifest.json
  2.  
  3. <code>
  4. {
  5. "manifest_version": 2,
  6. "name" : "Zalando Auto Bot",
  7. "version": "1.0",
  8. "offline_enabled": true,
  9. "content_scripts": [
  10. {
  11. "matches": [
  12. "https://w...content-available-to-author-only...e.pl/*"
  13. ],
  14. "js": ["jquery.js","content.js"]
  15. }
  16.  
  17. ],
  18. "background" : {
  19. "scripts": ["background.js"]
  20. },
  21. "browser_action":{
  22. "default_icon": "img/icon.png",
  23. "default_popup": "popup.html",
  24. "default_title": "A popup will come here"
  25. },
  26. "permissions": ["tabs","storage"],
  27. "content_security_policy": "script-src 'self' https://c...content-available-to-author-only...e.com/; object-src 'self'"
  28. }
  29.  
  30. </code>
  31.  
  32.  
  33. popup.html
  34.  
  35.  
  36. <script type="text/javascript" src="jquery.js"></script>
  37.  
  38. ...other code in this file doesn't matter in this case...
  39.  
  40.  
  41.  
  42.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:1: error: class, interface, or enum expected
manifest.json
^
Main.java:38: error: unclosed character literal
...other code in this file doesn't matter in this case...
                                ^
2 errors
stdout
Standard output is empty