Starify Github repo links

Add Github Stars badges to Github project links

Co to jest Starify Github repo links?

Starify Github repo links to rozszerzenie Chrome opracowane przez https://itenium.be, a jego główną funkcją jest „Add Github Stars badges to Github project links”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Starify Github repo links

Pobierz pliki rozszerzeń Starify Github repo links 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

                        Scans all links on a page and adds a Github Stars badge to a Github project links. Use Control + Alt + G to activate.

Runs immediately on Google search results, StackOverflow sites, Github.com, npmjs.com etc.                    

Podstawowe informacje o rozszerzeniu

Nazwa Starify Github repo links Starify Github repo links
ID kpficnopciffopkhjpckhkgmnlakcmig
Oficjalny URL https://chrome.google.com/webstore/detail/starify-github-repo-links/kpficnopciffopkhjpckhkgmnlakcmig
Opis Add Github Stars badges to Github project links
Rozmiar pliku 9.86 KB
Liczba instalacji 17
Aktualna Wersja 1.7
Ostatnia Aktualizacja 2020-04-27
Data Publikacji 2020-04-25
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper https://itenium.be
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://itenium.be/blog/javascript/starify-github-links/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "permissions": [
        "activeTab",
        "webRequest",
        "https:\/\/img.shields.io\/"
    ],
    "manifest_version": 2,
    "content_scripts": [
        {
            "exclude_globs": [],
            "include_globs": [
                "*"
            ],
            "js": [
                "github-stars.user.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "file:\/\/\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "converted_from_user_script": true,
    "description": "Add Github Stars badges to Github project links",
    "name": "Starify Github repo links",
    "short_name": "GithubStarifyLinks",
    "version": "1.7",
    "content_security_policy": "script-src 'self'; object-src 'self'; img-src 'self' 'sha256-WOdSzz11\/3cpqOdrm89LBL2UPwEU9EhbDtMy2OciEhs='",
    "icons": {
        "128": "favicon.png"
    }
}