gitphy

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

Vad är gitphy?

gitphy är en Chrome-tillägg utvecklad av https://kevinformatics.com, och dess huvudfunktion är "Put gifs in your Github issues and pull requests without leaving the textarea".

Tilläggsskärmbilder

screenshot

Ladda ner gitphy-förlängningens CRX-fil

Ladda ner gitphy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn gitphy gitphy
ID kbnbfpmphfpcndlokabhemafnjhkcffc
Officiell webbadress https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc
Beskrivning Put gifs in your Github issues and pull requests without leaving the textarea
Filstorlek 86.94 KB
Antal Installationer 38
Aktuell Version 1.1.1
Senast Uppdaterad 2020-10-15
Publiceringsdatum 2020-07-24
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://kevinformatics.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://kevinformatics.com/gitphy
Stödda Språk 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"
    ]
}