Examine source code of InteractiveFics

Inspect and view changes in InteractiveFics 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
{
  "manifest_version": 2,
  "name": "InteractiveFics",
  "author": "mariamrf",
  "version": "5.2.0",
  "description": "Replaces Y/N & other variables in Reader Insert/second person fics with words of your choice.",
  "browser_action": {
    "default_title": "InteractiveFics",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "run_at": "document_idle",
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "incognito": "split",
  "background": {
    "page": "popup.html"
  },
  "homepage_url": "https://interactivefics.tumblr.com",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}