View Source Tabs Auto Close

View Source Tabs Auto Close

Supercharge your View Source tabs with some handy automation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "View Source Tabs Auto Close",
  "description": "Supercharge your View Source tabs with some handy automation",
  "version": "1.0.3",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "tabs",
    "background"
  ],
  "icons": {
    "48": "icons/icons8-close-all-tabs-64.png",
    "128": "icons/icons8-close-all-tabs-128.png"
  }
}