A browser extension that automatically sets your Twitter timeline to show the latest tweets
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. }