Back to Drive

Back to Drive

A nifty little extension that reverts the link on the Google Drive Services logo back to what it used to be: drive.google.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "RobotXLabs",
  "browser_action": {
    "default_icon": "icon_64.png",
    "default_popup": "popup.htm"
  },
  "content_scripts": [
    {
      "js": [
        "btdd.js"
      ],
      "matches": [
        "https://docs.google.com/*/d/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon_16.png",
    "32": "icon_32.png",
    "64": "icon_64.png",
    "128": "icon_128.png"
  },
  "description": "A nifty little extension that reverts the link on the Google Drive Services logo back to what it used to be: drive.google.com.",
  "manifest_version": 2,
  "name": "Back to Drive",
  "permissions": [
    "https://docs.google.com/*/d/*"
  ],
  "version": "0.3.0"
}