gitphy

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

What is gitphy?

gitphy is a Chrome extension developed by https://kevinformatics.com, and its main feature is "Put gifs in your Github issues and pull requests without leaving the textarea".

Extension Screenshots

screenshot

Download gitphy Extension CRX File

Download gitphy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name gitphy gitphy
ID kbnbfpmphfpcndlokabhemafnjhkcffc
Official URL https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc
Description Put gifs in your Github issues and pull requests without leaving the textarea
File Size 86.94 KB
Installation Count 38
Current Version 1.1.1
Last Updated 2020-10-15
Publish Date 2020-07-24
Rating 5.00/5 Total 2 Ratings
Developer https://kevinformatics.com
Email [email protected]
Payment Type free
Extension Website http://kevinformatics.com/gitphy
Supported Languages 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"
    ]
}