Pivotal Tracker Story Copier

Copy
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pivotal Tracker Story Copier",
  "version": "1.0.13",
  "description": "Copy",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.pivotaltracker.com/n/projects/*"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.js",
        "js/content_script.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": "pivotaltracker.png",
    "default_title": "View stories",
    "default_popup": "popup.html"
  },
  "permissions": [
    "declarativeContent",
    "activeTab",
    "tabs",
    "clipboardWrite",
    "clipboardRead",
    "http://*.google.com/"
  ],
  "options_page": "options.html",
  "icons": {
    "48": "pivotaltracker.png",
    "128": "pivotaltracker.png"
  },
  "web_accessible_resources": [
    "bower_components/jquery/dist/jquery.js",
    "js/content_script.js"
  ],
  "manifest_version": 2
}