GeeksForGeeks Reader with Sync

GeeksForGeeks Reader with Sync

Sync your GeeksForGeeks/GeeksQuiz solved problems across Home and Office.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "bg.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    },
    "default_popup": "menu.html",
    "default_title": "GeeksForGeeks Reader with Sync"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "jquery-2.1.3.min.js",
        "main.js"
      ],
      "matches": [
        "*://www.geeksforgeeks.org/*",
        "*://geeksquiz.com/*"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "commands": {
    "import": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "Import"
    },
    "export": {
      "suggested_key": {
        "default": "Ctrl+Shift+2"
      },
      "description": "Export"
    },
    "toggle": {
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      },
      "description": "Mark Solved/not"
    }
  },
  "options_page": "options.html",
  "description": "Sync your GeeksForGeeks/GeeksQuiz solved problems across Home and Office.",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApw+tr6x0d3Dld66RGa8jf9uOCit8uovAaqNkEPtce4MJVyg8jBt0T6TEdNDB/l15ChkbMF0KPOHDx+XI0ot1OB3KO4Jaqfhf1UOVK0cKLiEVfyVJTs2t2uDKWn7PFvUX/PMXpzO2XtV2DyiOL2p3QmZT3DlPI0UtyqUShCGxxSAqEIMA7CnxvqXkCDhlMffZ7vT2+p19N7HHmM6fI45dOn3TOQ313ORLRrEu2ev5Yi6TXmlqD3fdXQszN4qOXuZpbVAHlDUNbtL5SjoZLMY09QVSNoGZHjtEqjk3pF5yhS2wtuMnwnD/zJAX0zi/bJBuRem79fcMfa/PQFLsHCQHlQIDAQAB",
  "manifest_version": 2,
  "name": "GeeksForGeeks Reader with Sync",
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "short_name": "GeeksForGeeks Reader with Sync",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "5.8",
  "web_accessible_resources": [
    "jquery-2.1.3.min.js",
    "options.html"
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  }
}