Guest User

http://stackoverflow.com/q/13331945

a guest
Nov 11th, 2012
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. // manifest.json
  2. {
  3. "name": "required",
  4. "version": "1",
  5. "manifest_version": 2,
  6. "content_scripts": [{
  7. "matches": ["*//*/*"],
  8. "js": ["contentscript.js"]
  9. }]
  10. }
  11.  
  12. // contentscript.js
  13. alert('This is script.');
Add Comment
Please, Sign In to add comment