Capitalize!t

Capitalize!t

This Chrome Extension lets you bookmark any web page in a Google Spreadsheet, along with any structured metadata you want to add.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Capitalize!t",
  "version": "4.0",
  "manifest_version": 2,
  "minimum_chrome_version": "29",
  "browser_action": {
    "default_icon": "icon-small.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "selectionjfm.js",
        "jquery-1.11.1.min.js",
        "jquery-ui.min.js"
      ],
      "css": [
        "jquery-ui.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icon-small.png",
    "48": "icon.png",
    "128": "icon-small.png"
  },
  "permissions": [
    "https://secure.flickr.com/",
    "identity",
    "https://accounts.google.com/*",
    "https://www.googleapis.com/*",
    "https://spreadsheets.google.com/*",
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "oauth2": {
    "client_id": "1072441605060-ru8qolp0e2apvebmd63h0u9821rgfbss.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/plus.login",
      "https://spreadsheets.google.com/feeds"
    ]
  }
}