WordPress.org Plugins SVN Link

WordPress.org Plugins SVN Link

On WordPress plugins pages, show a button linking to the plugin's SVN repo under the .zip file download button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WordPress.org Plugins SVN Link",
  "version": "1.2.5",
  "description": "On WordPress plugins pages, show a button linking to the plugin's SVN repo under the .zip file download button.",
  "icons": {
    "16": "wp-blue-mini.png",
    "48": "wp-blue-small.png",
    "128": "wp-blue-large.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://wordpress.org/plugins/*",
        "*://wordpress.org/support/plugin/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ]
}