gitphy

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

Qu'est-ce que gitphy ?

gitphy est une extension Chrome développée par https://kevinformatics.com, et sa fonction principale est "Put gifs in your Github issues and pull requests without leaving the textarea".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension gitphy

Téléchargez les fichiers d'extension gitphy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom gitphy gitphy
ID kbnbfpmphfpcndlokabhemafnjhkcffc
URL Officiel https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc
Description Put gifs in your Github issues and pull requests without leaving the textarea
Taille du Fichier 86.94 KB
Nombre d'Installations 38
Version Actuelle 1.1.1
Dernière Mise à Jour 2020-10-15
Date de Publication 2020-07-24
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://kevinformatics.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://kevinformatics.com/gitphy
Langues Prises en Charge 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"
    ]
}