manifest.json 876 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "manifest_version": 2,
  3. "name": "Will these links block Tor user?",
  4. "description": "Find problematic links",
  5. "version": "1.0.6.5",
  6. "homepage_url": "http://crimeflare.eu.org/",
  7. "author": "Crimeflare",
  8. "permissions": [
  9. "storage",
  10. "unlimitedStorage"
  11. ],
  12. "icons": {
  13. "72": "icons/72.png"
  14. },
  15. "background": {
  16. "scripts": [
  17. "bg.js"
  18. ]
  19. },
  20. "content_scripts": [
  21. {
  22. "matches": [
  23. "http://*/*",
  24. "https://*/*"
  25. ],
  26. "js": [
  27. "cs.js"
  28. ],
  29. "run_at": "document_end"
  30. }
  31. ],
  32. "options_ui": {
  33. "browser_style": true,
  34. "page": "cfg.html"
  35. },
  36. "applications": {
  37. "gecko": {
  38. "id": "isat@addon.crimeflare.eu.org",
  39. "strict_min_version": "91.0",
  40. "update_url": "https://git.disroot.org/dCF/deCloudflare/raw/branch/master/addons/releases/firefox_update.json"
  41. }
  42. }
  43. }