A Chrome extension for Write.as
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.
 
 
 

38 lines
681 B

  1. {
  2. "manifest_version": 2,
  3. "name": "Write.as for Chrome",
  4. "short_name": "Write.as",
  5. "description": "Publish a thought in seconds.",
  6. "version": "2.0.1",
  7. "icons": {
  8. "16": "icon16.png",
  9. "48": "icon48.png",
  10. "128": "icon128.png"
  11. },
  12. "browser_action": {
  13. "default_icon": {
  14. "19": "icon.png",
  15. "38": "icon76.png"
  16. },
  17. "default_popup": "popup.html",
  18. "default_title": "Publish this"
  19. },
  20. "background": {
  21. "scripts": [
  22. "context.js",
  23. "H.js"
  24. ]
  25. },
  26. "permissions": [
  27. "activeTab",
  28. "contextMenus",
  29. "webRequest",
  30. "*://*.write.as/"
  31. ],
  32. "externally_connectable": {
  33. "matches": ["*://*.write.as/*"]
  34. }
  35. }