GitHub Version Tags

Displays the latest version of a project next to the repo name on GitHub.

Vad är GitHub Version Tags?

GitHub Version Tags är en Chrome-tillägg utvecklad av joeyespo, och dess huvudfunktion är "Displays the latest version of a project next to the repo name on GitHub.".

Tilläggsskärmbilder

screenshot

Ladda ner GitHub Version Tags-förlängningens CRX-fil

Ladda ner GitHub Version Tags-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Displays the latest version of a project next to the repo name on GitHub.

Source code is on GitHub http://github.com/joeyespo/github-version-tags                    

Grundläggande Information om Tillägg

Namn GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
Officiell webbadress https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
Beskrivning Displays the latest version of a project next to the repo name on GitHub.
Filstorlek 38.62 KB
Antal Installationer 126
Aktuell Version 1.1.0
Senast Uppdaterad 2017-10-01
Publiceringsdatum 2017-10-01
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare joeyespo
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://github.com/joeyespo/github-version-tags
Hjälpsida URL http://github.com/joeyespo/github-version-tags/issues
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Version Tags",
    "version": "1.1.0",
    "description": "Displays the latest version of a project next to the repo name on GitHub.",
    "author": "Joe Esposito ",
    "icons": {
        "19": "media\/icon_19.png",
        "38": "media\/icon_38.png",
        "48": "media\/icon_48.png",
        "128": "media\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "vendor\/compare-versions.js",
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/api.github.com\/*"
    ]
}