Guest User

Untitled

a guest
May 12th, 2014
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. /WebM Looper/icon.png
  2. http://i.imgur.com/ayMrOD8.png
  3.  
  4. /WebM Looper/loopWebM.js
  5. //// Courtesy of The Chromium Authors. All rights reserved.
  6. // Made by an anon for other anons
  7. var videoWrapper = document.getElementsByTagName("video")[0];
  8. videoWrapper.loop = true;
  9. videoWrapper.controls = false;
  10.  
  11. /WebM Looper/manifest.json
  12. {
  13. "manifest_version": 2,
  14.  
  15. "name": "AutoWebM Looper",
  16. "description": "This extension loops WebM files automatically",
  17. "version": "1.0",
  18. "permissions": [
  19. "tabs",
  20. "*://*/*.webm",
  21. "file:///*/*.webm"
  22. ],
  23.  
  24. "content_scripts": [
  25. {
  26. "matches": ["*://*/*.webm","file:///*/*.webm"],
  27. "js": ["loopWebM.js"],
  28. "run_at": "document_end"
  29. }
  30. ],
  31.  
  32. "icons": { "128": "icon.png" }
  33. }
Add Comment
Please, Sign In to add comment