gitphy
Put gifs in your Github issues and pull requests without leaving the textarea
ما هو gitphy؟
gitphy هو إضافة Chrome تم تطويرها بواسطة https://kevinformatics.com، والميزة الرئيسية لها هي "Put gifs in your Github issues and pull requests without leaving the textarea".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة gitphy
قم بتنزيل ملفات الامتداد gitphy بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | gitphy |
ID | kbnbfpmphfpcndlokabhemafnjhkcffc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc |
الوصف | Put gifs in your Github issues and pull requests without leaving the textarea |
حجم الملف | 86.94 KB |
عدد التثبيتات | 38 |
النسخة الحالية | 1.1.1 |
آخر تحديث | 2020-10-15 |
تاريخ النشر | 2020-07-24 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | https://kevinformatics.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | http://kevinformatics.com/gitphy |
اللغات المدعومة | 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" ] } |