Remember last read Tweet

Remember last read Tweet

This extension can remember the last Tweet you read if you mark it so. You can then go back Twitter and return to that position…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "__MSG_extname__",
  "version": "0.4.1",
  "default_locale": "en",
  "manifest_version": 2,
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/"
      ],
      "js": [
        "jquery.min.js",
        "script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/down-arrow.png"
  ]
}