Storyfinder

Storyfinder

Graph based information and knowledge management of websites and entities.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Storyfinder",
  "short_name": "Storyfinder",
  "version": "0.0.13",
  "description": "Graph based information and knowledge management of websites and entities.",
  "icons": {
    "48": "icon-48.png",
    "500": "icon-500.png"
  },
  "browser_action": {
    "default_popup": "menu.html"
  },
  "author": "Language Technology Group - University of Hamburg",
  "background": {
    "scripts": [
      "backgroundscript.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "contentstyle.css"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "homepage_url": "https://uhh-lt.github.io/storyfinder/",
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "<all_urls>",
    "contextMenus",
    "webNavigation"
  ],
  "web_accessible_resources": [
    "popup.html"
  ]
}