Index - Organize Everything

Index - Organize Everything

Use the Index Firefox extension to quickly #index interesting ideas you find in the wild.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Index",
  "version": "0.11resigned1",
  "manifest_version": 2,
  "description": "Organize Everything.",
  "icons": {
    "16": "icons/chevron-icon-16.png",
    "32": "icons/chevron-icon-32.png",
    "48": "icons/chevron-icon-48.png",
    "96": "icons/chevron-icon-96.png",
    "128": "icons/chevron-icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "http://*/",
    "https://*/",
    "cookies"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/chevron-icon-16.png",
      "32": "icons/chevron-icon-32.png",
      "48": "icons/chevron-icon-48.png",
      "96": "icons/chevron-icon-96.png",
      "128": "icons/chevron-icon-128.png"
    },
    "default_title": "Index this page",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+I"
      },
      "description": "Opens the Index save extension."
    }
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}