Advertisement
Guest User

manifest.json

a guest
Jan 5th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.    "manifest_version" : 2,
  3.     "name"       : "Transcription pop-up",
  4.     "version"    : "0.1",
  5.     "description": "Shows transcription of an English word on double click",
  6.     "content_scripts": [{
  7.         "matches": ["http://*/*", "file://*/*"],
  8.         "js"     : ["trans.js"],
  9.         "run_at" : "document_idle"
  10.     }]
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement