A browser extension that automatically sets your Twitter timeline to show the latest tweets
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

manifest.json 381B

123456789101112131415161718192021
  1. {
  2. "name": "Latest Tweets",
  3. "version": "0.0.3",
  4. "manifest_version": 2,
  5. "description": "Automatically switch back to latest tweets",
  6. "content_scripts": [
  7. {
  8. "matches": [
  9. "https://twitter.com/home"
  10. ],
  11. "js": [
  12. "index.js"
  13. ]
  14. }
  15. ],
  16. "icons": {
  17. "16": "icons/16.png",
  18. "48": "icons/48.png",
  19. "128": "icons/128.png"
  20. }
  21. }