gitphy

Put gifs in your Github issues and pull requests without leaving the textarea

Co to jest gitphy?

gitphy to rozszerzenie Chrome opracowane przez https://kevinformatics.com, a jego główną funkcją jest „Put gifs in your Github issues and pull requests without leaving the textarea”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia gitphy

Pobierz pliki rozszerzeń gitphy 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

                        Extends the markdown image syntax by allowing you to search for gifs right from Github textareas. Use the syntax ![](gif: ) to search Giphy for gifs.

Open source at: https://github.com/kevinwuhoo/gitphy.                    

Podstawowe informacje o rozszerzeniu

Nazwa gitphy gitphy
ID kbnbfpmphfpcndlokabhemafnjhkcffc
Oficjalny URL https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc
Opis Put gifs in your Github issues and pull requests without leaving the textarea
Rozmiar pliku 86.94 KB
Liczba instalacji 38
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2020-10-15
Data Publikacji 2020-07-24
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://kevinformatics.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://kevinformatics.com/gitphy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "gitphy",
    "version": "1.1.1",
    "manifest_version": 2,
    "description": "Put gifs in your Github issues and pull requests without leaving the textarea",
    "author": "Kevin Wu",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "index.css"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/*.giphy.com\/*"
    ],
    "web_accessible_resources": [
        "giphy-attribution.png"
    ]
}