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.
什么是WordPress.org Plugins SVN Link?
WordPress.org Plugins SVN Link是由Evan Solomon开发的Chrome扩展程序,该扩展的主要功能是“On WordPress plugins pages, show a button linking to the plugin's SVN repo under the .zip file download button.”。
扩展截图
下载WordPress.org Plugins SVN Link扩展crx文件
下载WordPress.org Plugins SVN Link扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple Chrome extension that runs on WordPress plugins pages. It will show a button linking to the plugin's SVN repo under the .zip file download button. Now works with the new version of the WordPress.org plugin pages, which added a "Favorite" button to the plugin description area.
扩展基本信息
名称 | WordPress.org Plugins SVN Link |
ID | nfhpbeacfmdhhlhmolfcdlknnmalnled |
官方URL | https://chromewebstore.google.com/detail/wordpressorg-plugins-svn/nfhpbeacfmdhhlhmolfcdlknnmalnled |
简介 | On WordPress plugins pages, show a button linking to the plugin's SVN repo under the .zip file download button. |
文件大小 | 47.98 KB |
安装次数 | 902 |
当前版本 | 1.2.5 |
更新时间 | 2017-04-02 |
上架时间 | 2017-04-02 |
评分 | 4.50/5 共12次评分 |
开发者 | Evan Solomon |
付费类型 | free |
扩展官网 | http://evansolomon.me/notes/chrome-extension-add-link-to-svn-repo-on-wordpress-plugin-pages/ |
帮助页面URL | http://evansolomon.me/notes/chrome-extension-add-link-to-svn-repo-on-wordpress-plugin-pages/ |
支持的语言 | en-US |
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" ] } ] } |