ZendeskTicketCopy
Creates a simple button in Zendesk to copy the current ticket number.
ما هو ZendeskTicketCopy؟
ZendeskTicketCopy هو إضافة Chrome تم تطويرها بواسطة MatthewParkerDev، والميزة الرئيسية لها هي "Creates a simple button in Zendesk to copy the current ticket number.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة ZendeskTicketCopy
قم بتنزيل ملفات الامتداد ZendeskTicketCopy بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension creates a simple button in Zendesk to copy the current ticket number. This saves time compared to copying it out of the URL. معلومات أساسية عن التمديد
| الاسم | |
| ID | ngkngoghlonilnnejjcecljbbaekapim |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/zendeskticketcopy/ngkngoghlonilnnejjcecljbbaekapim |
| الوصف | Creates a simple button in Zendesk to copy the current ticket number. |
| حجم الملف | 8.25 KB |
| عدد التثبيتات | 147 |
| النسخة الحالية | 1.0.1 |
| آخر تحديث | 2023-01-12 |
| تاريخ النشر | 2023-01-02 |
| تقييم | 5.00/5 مجموع تقييمات 1 |
| المطور | MatthewParkerDev |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/FakeRayBanz/ZendeskTicketCopy |
| عنوان صفحة المساعدة | https://github.com/FakeRayBanz/ZendeskTicketCopy/issues |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "ZendeskTicketCopy",
"version": "1.0.1",
"description": "Creates a simple button in Zendesk to copy the current ticket number.",
"icons": {
"128": "images\/icon-128.png"
},
"content_scripts": [
{
"js": [
"scripts\/content.js"
],
"css": [
"style.css"
],
"matches": [
"https:\/\/*.zendesk.com\/agent\/*"
],
"run_at": "document_start"
}
]
} | |