Inspector Saver

Inspector Saver

Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Inspector Saver",
  "description": "Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.",
  "version": "1.1",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "trumani_material.png"
  },
  "devtools_page": "devtools.html",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "icons": {
    "16": "detective-16.png",
    "48": "detective-48.png",
    "128": "detective-128.png"
  },
  "background": {
    "scripts": [
      "js/main.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ]
}