gitphy

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

Wat is gitphy?

gitphy is een Chrome-extensie ontwikkeld door https://kevinformatics.com, en de belangrijkste functie is "Put gifs in your Github issues and pull requests without leaving the textarea".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie gitphy

Download gitphy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam gitphy gitphy
ID kbnbfpmphfpcndlokabhemafnjhkcffc
Officiële URL https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc
Beschrijving Put gifs in your Github issues and pull requests without leaving the textarea
Bestandsgrootte 86.94 KB
Aantal Installaties 38
Huidige Versie 1.1.1
Laatst Bijgewerkt 2020-10-15
Publicatiedatum 2020-07-24
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://kevinformatics.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://kevinformatics.com/gitphy
Ondersteunde Talen 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"
    ]
}