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

manifest.json 492B

123456789101112131415161718192021222324252627
  1. {
  2. "manifest_version": 2,
  3. "name": "RSF Censorship Detector",
  4. "description": "Find access to blocked websites",
  5. "version": "1.3",
  6. "icons": {
  7. "128": "rsc/icon-128.png"
  8. },
  9. "browser_action": {
  10. "default_icon": "rsc/icon.png",
  11. "default_popup": "index.html"
  12. },
  13. "permissions": [
  14. "storage",
  15. "tabs"
  16. ],
  17. "background": {
  18. "scripts": ["libs/jquery.js", "backgroundPage.js"]
  19. },
  20. "default_locale": "en"
  21. }