manifest.json 342 B

12345678910111213141516
  1. {
  2. "manifest_version": 2,
  3. "name": "bratFastMode",
  4. "version": "1.0",
  5. "description": "Add an UI for fast annotation of brat document (document level classification).",
  6. "content_scripts": [
  7. {
  8. "matches": ["<all_urls>"],
  9. "js": ["bratFastMode.js"],
  10. "css": ["bratFastMode.css"]
  11. }
  12. ]
  13. }