Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <script type="text/javascript">document.write('Hello, world!')</script>
  2.  
  3. {
  4. "name": "Hello World!",
  5. "description": "My first Chrome App.",
  6. "version": "0.1",
  7. "manifest_version": 2,
  8. "app": {
  9. "background": {
  10. "scripts": ["background.js"]
  11. }
  12. },
  13. "sandbox": {
  14. "pages": [ "window.html" ]
  15. },
  16. "icons": { "16": "calculator-16.png", "128": "calculator-128.png" }
  17. }
  18.  
  19. <!DOCTYPE html>
  20. <html>
  21. <head>
  22. <title>Hello, world</title>
  23. </head>
  24. <body>
  25. <script type='text/javascript'>
  26. document.write("Hello, world!");
  27. </script>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement