manifest.json 527 B

12345678910111213141516171819202122232425262728
  1. {
  2. "manifest_version":2,
  3. "name":"Halcyon Share",
  4. "version":"1.1",
  5. "description":"Replaces all Twitter share buttons with Halcyon share buttons.",
  6. "icons":{
  7. "48":"icon-48.png",
  8. "96":"icon-96.png"
  9. },
  10. "content_scripts":[{
  11. "matches":["*://platform.twitter.com/widgets/*"],
  12. "js":["share.js"],
  13. "all_frames":true
  14. }],
  15. "options_ui":{
  16. "browser_style":false,
  17. "open_in_tab":true,
  18. "page":"settings.html"
  19. },
  20. "permissions":["storage"],
  21. "applications":{
  22. "gecko":{
  23. "id":"share@halcyon.social"
  24. }
  25. },
  26. "web_accessible_resources":["settings.html"]
  27. }