FormRecycler

FormRecycler

FormRecycler recycles Google Form questions from previously created Forms

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FormRecycler",
  "description": "FormRecycler recycles Google Form questions from previously created Forms",
  "version": "4.0.1",
  "homepage_url": "https://automagicalapps.com",
  "icons": {
    "128": "FormRecyclerLogo.png"
  },
  "browser_action": {
    "default_icon": "FormRecyclerLogo.png",
    "default_popup": "credentials.html"
  },
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "identity",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/forms/*",
        "https://docs.google.com/*/forms/*"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'",
  "oauth2": {
    "client_id": "265532780714-79gpg6s69rgskvk6odjmqqeas50420b6.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzTUEi8SRGyEEhjnhgvQNGRN5fmKcHeDwXP1OiLiQZO9LAqj4hn7OS5RLorrHxgjZ5RGXIKTF/dZIxxj+6nWk/AHwbJOaa3qs8N2e8FYgkdNwctalEr76LxHUsv0lbonAu1A0ovwXjQTH/pvB9lT7lR9Ucpc/rVKIf/y2DAd193cVA8+UIAHrQHf5jI6yefQBDYxuEEd3RCprOA3Mik1KvvkDZmie1eG0IiDlgeLfxNfMybLa8SxPlIu1YT4ycPiia5nvRAcNsPmZqkJuA0R7LiGMJhtFU384T9zJPdhJPXe0aETVkjxCbBPNhoANCa8jgH3nnLPAJAhkDImdRq7+5wIDAQAB"
}