Portal Interactive

Guerilla Comment Boxes
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": "Portal Interactive",
  "description": "Guerilla Comment Boxes",
  "version": "1.1",
  "manifest_version": 3,
  "icons": {
    "16": "./logos/portal_logo_v3_16.png",
    "32": "./logos/portal_logo_v3_32.png",
    "48": "./logos/portal_logo_v3_48.png",
    "128": "./logos/portal_logo_v3_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {},
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "identity"
  ],
  "oauth2": {
    "client_id": "472317870304-2628k01ldf5892p1h7f25dc19euv7es5.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/plus.login"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "portal-popup-style.css",
        "/logos/portal_v2_title.png",
        "popup.html"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ]
}