Examine source code of Gaeilgeoir

Inspect and view changes in Gaeilgeoir source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Gaeilgeoir",
  "description": "A web browser extension to translate website contents into Irish",
  "version": "0.2.1",
  "manifest_version": 2,
  "author": "Séamus Ó Ceanainn",
  "browser_action": {
    "default_title": "Enable/Disable",
    "default_icon": {
      "16": "images/icon16-inactive.png",
      "48": "images/icon48-inactive.png",
      "128": "images/icon128-inactive.png"
    }
  },
  "background": {
    "scripts": [
      "serviceWorker.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "gaeilgeoir@soceanainn.com"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus",
    "https://raw.githubusercontent.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "gaeilgeoir.js",
        "exportTranslations.js"
      ]
    }
  ]
}