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.

Co to jest WordPress.org Plugins SVN Link?

WordPress.org Plugins SVN Link to rozszerzenie Chrome opracowane przez Evan Solomon, a jego główną funkcją jest „On WordPress plugins pages, show a button linking to the plugin's SVN repo under the .zip file download button.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia WordPress.org Plugins SVN Link

Pobierz pliki rozszerzeń WordPress.org Plugins SVN Link w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa WordPress.org Plugins SVN Link WordPress.org Plugins SVN Link
ID nfhpbeacfmdhhlhmolfcdlknnmalnled
Oficjalny URL https://chromewebstore.google.com/detail/wordpressorg-plugins-svn/nfhpbeacfmdhhlhmolfcdlknnmalnled
Opis On WordPress plugins pages, show a button linking to the plugin's SVN repo under the .zip file download button.
Rozmiar pliku 47.98 KB
Liczba instalacji 902
Aktualna Wersja 1.2.5
Ostatnia Aktualizacja 2017-04-02
Data Publikacji 2017-04-02
Ocena 4.50/5 Łącznie 12 Oceny
Deweloper Evan Solomon
Typ Płatności free
Strona Rozszerzenia http://evansolomon.me/notes/chrome-extension-add-link-to-svn-repo-on-wordpress-plugin-pages/
Adres URL Strony Pomocy http://evansolomon.me/notes/chrome-extension-add-link-to-svn-repo-on-wordpress-plugin-pages/
Obsługiwane Języki 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"
            ]
        }
    ]
}