ZendeskTicketCopy
Creates a simple button in Zendesk to copy the current ticket number.
ZendeskTicketCopyとは何ですか?
ZendeskTicketCopyはMatthewParkerDevによって開発されたChromeの拡張機能で、その主な機能は「Creates a simple button in Zendesk to copy the current ticket number.」です。
拡張機能のスクリーンショット
ZendeskTicketCopy拡張機能のCRXファイルをダウンロード
ZendeskTicketCopy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/FakeRayBanz/ZendeskTicketCopy |
| ヘルプページのURL | 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"
}
]
} | |