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.
 
 
 

37 lines
646 B

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