gitphy
Put gifs in your Github issues and pull requests without leaving the textarea
Hvad er gitphy?
gitphy er en Chrome-udvidelse udviklet af https://kevinformatics.com, og dens hovedfunktion er "Put gifs in your Github issues and pull requests without leaving the textarea".
Udvidelsesskærmbilleder
Download gitphy-udvidelses-CRX-fil
Download gitphy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Extends the markdown image syntax by allowing you to search for gifs right from Github textareas. Use the syntax  to search Giphy for gifs.
Open source at: https://github.com/kevinwuhoo/gitphy. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | kbnbfpmphfpcndlokabhemafnjhkcffc |
| Officiel URL | https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc |
| Beskrivelse | Put gifs in your Github issues and pull requests without leaving the textarea |
| Filstørrelse | 86.94 KB |
| Antal Installationer | 38 |
| Nuværende Version | 1.1.1 |
| Senest Opdateret | 2020-10-15 |
| Udgivelsesdato | 2020-07-24 |
| Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
| Udvikler | https://kevinformatics.com |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | http://kevinformatics.com/gitphy |
| Understøttede Sprog | 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"
]
} | |