Timeline Survey Study

Timeline Survey Study

This extension is used to study social media and political opinions by monitoring your browsing activity on Twitter. Only study…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Timeline Survey Study",
  "version": "0.1.6.6",
  "content_scripts": [
    {
      "matches": [
        "https://*.twitter.com/*",
        "http://*.twitter.com/*",
        "https://*.x.com/*",
        "http://*.x.com/*"
      ],
      "js": [
        "content.bundle.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "runtime"
  ],
  "icons": {
    "128": "icon128.png"
  }
}