Trotto go links

Trotto go links

This extension makes Trotto "go links" work seamlessly in Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Trotto go links",
  "description": "This extension makes Trotto \"go links\" work seamlessly in Chrome.",
  "storage": {
    "managed_schema": "schema.json"
  },
  "version": "1.27",
  "icons": {
    "48": "[email protected]",
    "128": "[email protected]"
  },
  "browser_action": {
    "default_icon": "[email protected]",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "*://go/*",
    "*://*.trot.to/*"
  ],
  "optional_permissions": [
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.trot.to/*"
      ],
      "js": [
        "data_injector.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.trot.to/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_idle"
    }
  ]
}