manifest.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDZCwLaKu+2OIwztgyHw3pNGbOTokLV2Kb4MGnZGnxKTozx87Wf7aQZWzBtGBi4iys1HE5BTsuOY8jFNfuChncl/bzIGT4J6J0FjxpF+gv9czMVyb6o+4VK9fB5BgL+arlZsuS07rylTLPimN1LzVMi/v1F3IcqgXXnsQvdIxoXFQIDAQAB",
  3. "background": {
  4. "scripts": [
  5. "js/extension/background.js"
  6. ],
  7. "persistent": false
  8. },
  9. "default_locale": "en",
  10. "description": "A helper for murkmod tasks - the visual successor to mush",
  11. "icons": {
  12. "128": "images/stable/icon-128.png"
  13. },
  14. "manifest_version": 2,
  15. "minimum_chrome_version": "1",
  16. "name": "murkmod helper",
  17. "permissions": [
  18. "clipboardRead",
  19. "clipboardWrite",
  20. "idle",
  21. "terminalPrivate",
  22. "accessibilityFeatures.read",
  23. "management"
  24. ],
  25. "version": "0.2",
  26. "update_url": "https://clients2.google.com/service/update2/crx",
  27. "author": {
  28. "email": "rainest0rme@proton.me"
  29. },
  30. "browser_action": {
  31. "default_icon": "images/stable/icon-128.png"
  32. },
  33. "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
  34. }