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

manifest.json 471B

1234567891011121314151617181920212223242526
  1. {
  2. "manifest_version": 2,
  3. "name": "Collateral Freedom",
  4. "description": "Find mirrors for blocked websites",
  5. "version": "1.0",
  6. "icons": {
  7. "128": "icon-128.png"
  8. },
  9. "browser_action": {
  10. "default_icon": "icon.png",
  11. "default_popup": "popup.html"
  12. },
  13. "permissions": [
  14. "storage",
  15. "tabs"
  16. ],
  17. "background": {
  18. "scripts": ["jquery.js", "eventPage.js"],
  19. "persistent": false
  20. }
  21. }