Finite

Finite

Augment the social media's infinite scroll feeds so that you'll know the amount of doom scrolling is done.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Finite",
  "version": "0.6.0",
  "description": "Augment the social media's infinite scroll feeds so that you'll know the amount of doom scrolling is done.",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "setUpFiniteTimeline.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "identity"
  ],
  "options_page": "options.html ",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuHbee1GZZPT/LwIC9PK0cpoSlvYqcUOJzrGjXZsczvVXnMjVH/OxDbaxNL6bnXvyGJ9SPW9zhCAeuCD+VVwFNGX6WCGpysxpUmANbsOxyZXKmroozwhS4xYJKkJSNUoOp/kxKSa0e9eJYp0OrxoYxCUsDs3Dcws5Jr1Q9vAGVRs0oGI7LR1hH1w53hopdIjU2W9Hp4AeV3EC4LO2DLkSaHHK6hFGb12MhU9Wo+8ZFWLVQ5Z02rknbW0UH4mfYtDKHayGym3ek3z+fVUbP67Fp5yahOmZXo/zKticQ0DIxrlkJ7ZXxfO6HnWpldXk03otzdaSN5R6nVugUqHdbcVGBwIDAQAB"
}