Groups Show Time

Groups Show Time

Shows full date/time in groups listing and detail headers. Added support for custom date/time format.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Groups Show Time",
  "version": "1.1.1",
  "description": "Shows full date/time in groups listing and detail headers. Added support for custom date/time format.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://groups.google.com/*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "const.js",
        "mutation-summary.min.js",
        "main.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "event.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "identity",
    "https://www.googleapis.com/"
  ],
  "oauth2": {
    "client_id": "76177167544-nvkuv5sn5s9ov6amoa20gbtu24h3fibp.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/chromewebstore.readonly"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkhiE7rso15kb2IcyG1LhnCrVYZCG+tGtV3VnxJlaix6/fPLIMIvoYzTrntdGnzdMUbnewpSKBU8ibCnzghuvbKK9rbr/onEeS8x55Y1OFCT9p5yXgE7uIVmCmLL3ejDKEioorkarlMYXNE3Gingqd6WA6j0cXJjbJED+SpKa00QfQ1kuPtbxnD94aQs3r9PQcojDhKteC/sESWicxVMrT1IdFp2tiKFM6GuJa2J7QnZFqwa7pU/bq1SCnZQJb54//F4lePXfsy/3RIjjl24umBE1fyUko6OqT+YRa7nFB9Q1R9MbxCbadzv95Bt4ib2/+gurff8V0HXF/ZPBYXWbwwIDAQAB"
}