Find access to blocked websites https://rsf.org/collateral-freedom

manifest.json 632B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "manifest_version": 2,
  3. "name": "RSF Censorship Detector",
  4. "description": "Find access to blocked websites",
  5. "version": "1.3.3",
  6. "icons": {
  7. "128": "rsc/icon-128.png"
  8. },
  9. "browser_action": {
  10. "browser_style": false,
  11. "default_icon": "rsc/icon.png",
  12. "default_popup": "index.html"
  13. },
  14. "permissions": [
  15. "storage",
  16. "tabs"
  17. ],
  18. "background": {
  19. "scripts": ["libs/jquery.js", "backgroundPage.js"]
  20. },
  21. "applications": {
  22. "gecko": {
  23. "id": "collateral-freedom@rsf.org"
  24. }
  25. },
  26. "default_locale": "en"
  27. }