Custom Button
Customize a button.
Custom Button là gì?
Custom Button là một tiện ích mở rộng Chrome được phát triển bởi Rubén Martínez, và tính năng chính của nó là "Customize a button.".
Ả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 Custom Button
Tải xuống các tệp mở rộng Custom Button 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
Custom button it's just that, a button that you can customize with an URL and icon. Features: - Set a custom URL to open on click. - Open in current tab, new tab, new window, new popup window or popup on button (this doesn't work with every site). - Change the icon. - Set the domains where it should work using a regular expression. - Show notification when domain doesn't match.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Custom Button |
ID | mphgmadkligoedhahoinkjghofkpmedf |
URL Chính Thức | https://chromewebstore.google.com/detail/custom-button/mphgmadkligoedhahoinkjghofkpmedf |
Mô tả | Customize a button. |
Kích Thước Tệp | 30.12 KB |
Số Lần Cài Đặt | 2,896 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2021-05-09 |
Ngày Phát Hành | 2019-02-03 |
Đánh Giá | 4.50/5 Tổng số 26 Đánh Giá |
Nhà Phát Triển | Rubén Martínez |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/rubenmv/chrome-extension-custom-button |
URL Trang Trợ Giúp | https://github.com/rubenmv/chrome-extension-custom-button/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom Button", "short_name": "Custom Button", "description": "Customize a button.", "version": "1.1.0", "permissions": [ "notifications", "storage", "tabs" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "browser_action": { "default_icon": { "38": "images\/default-32.png", "19": "images\/default-24.png" } }, "icons": { "128": "images\/default-128.png", "48": "images\/default-64.png", "24": "images\/default-24.png" }, "background": { "scripts": [ "globals.js", "background.js" ] }, "options_page": "options.html" } |