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."입니다.

확장 프로그램 스크린샷

screenshot

WordPress.org Plugins SVN Link 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            ]
        }
    ]
}