Examine source code of Argotify

Inspect and view changes in Argotify 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Argotify",
  "description": "Transforme le texte de n'importe quelle page web en argot",
  "version": "1.1",
  "manifest_version": 2,
  "offline_enabled": true,
  "homepage_url": "https://github.com/WhiteFangs/Argotify",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "metriques.js",
        "argotify.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "96": "icons/icon_96.png",
    "128": "icons/icon_128.png"
  },
  "page_action": {
    "default_icon": "icons/icon_128.png",
    "default_title": "Argotify",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab"
  ]
}