Zendesk Auto Refresh
This is a third party plugin that will enforce zendesk to refresh.
Zendesk Auto Refresh là gì?
Zendesk Auto Refresh là một tiện ích mở rộng Chrome được phát triển bởi brandon stubbs, và tính năng chính của nó là "This is a third party plugin that will enforce zendesk to refresh.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Zendesk Auto Refresh
Tải xuống các tệp mở rộng Zendesk Auto Refresh dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This is a Third Party extension to refresh Zendesk. You will be able to enable/disable and set the refresh interval in seconds for the following zendesk sections: - Dashboard (Home) - Views (Note: These are only refreshed automatically if you are on the first page to prevent navigating you away from other pages on refresh) To change the settings please right click on the extension and click Options. You can view the source code in github, if you do not trust this extension then you can build and add it to chrome yourself. https://github.com/brandonstubbs/ZendeskRefresh version changes: 3.1.2 - change selectors (zendesk update) 3.1.1 - change selectors (zendesk update), remove customerList from options 3.1.0 - change selectors, remove client list refresh (I don't have access to this anymore) 3.0.1 - change selectors
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Zendesk Auto Refresh |
ID | fienhnlhhgmpnedllhaofmbekocecghf |
URL Chính Thức | https://chromewebstore.google.com/detail/zendesk-auto-refresh/fienhnlhhgmpnedllhaofmbekocecghf |
Mô tả | This is a third party plugin that will enforce zendesk to refresh. |
Kích Thước Tệp | 53.94 KB |
Số Lần Cài Đặt | 10,540 |
Phiên Bản Hiện Tại | 3.1.2 |
Cập Nhật Lần Cuối | 2021-04-14 |
Ngày Phát Hành | 2018-08-10 |
Đánh Giá | 3.70/5 Tổng số 23 Đánh Giá |
Nhà Phát Triển | brandon stubbs |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/brandonstubbs |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Zendesk Auto Refresh", "description": "This is a third party plugin that will enforce zendesk to refresh.", "version": "3.1.2", "manifest_version": 2, "minimum_chrome_version": "45", "content_scripts": [ { "matches": [ "*:\/\/*.zendesk.com\/agent\/*" ], "js": [ "jquery-3.6.0.min.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "128": "refresh-icon.png" } }, "icons": { "128": "refresh-icon.png" }, "permissions": [ "storage", "declarativeContent", "https:\/\/*.zendesk.com\/agent\/*" ], "options_ui": { "page": "options.html", "open_in_tab": false }, "author": "Brandon Stubbs" } |