gitphy

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

Was ist gitphy?

gitphy ist eine Chrome-Erweiterung, die von https://kevinformatics.com entwickelt wurde, und ihr Hauptmerkmal ist "Put gifs in your Github issues and pull requests without leaving the textarea".

Erweiterungsscreenshots

screenshot

gitphy-Erweiterungs-CRX-Datei herunterladen

Laden Sie gitphy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name gitphy gitphy
ID kbnbfpmphfpcndlokabhemafnjhkcffc
Offizielle URL https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc
Beschreibung Put gifs in your Github issues and pull requests without leaving the textarea
Dateigröße 86.94 KB
Installationsanzahl 38
Aktuelle Version 1.1.1
Letztes Update 2020-10-15
Veröffentlichungsdatum 2020-07-24
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://kevinformatics.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://kevinformatics.com/gitphy
Unterstützte Sprachen 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"
    ]
}