Custom Button
Customize a button.
什麼是Custom Button?
Custom Button是由Rubén Martínez開發的Chrome擴展程式,該擴展的主要功能是“Customize a button.”。
擴展截圖
下載Custom Button擴展crx文件
下載Custom Button擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Custom Button |
ID | mphgmadkligoedhahoinkjghofkpmedf |
官方網址 | https://chromewebstore.google.com/detail/custom-button/mphgmadkligoedhahoinkjghofkpmedf |
簡介 | Customize a button. |
檔案大小 | 30.12 KB |
安裝次數 | 2,896 |
目前版本 | 1.1.0 |
更新時間 | 2021-05-09 |
上架時間 | 2019-02-03 |
評分 | 4.50/5 共 26 次評分 |
開發者 | Rubén Martínez |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/rubenmv/chrome-extension-custom-button |
說明頁面URL | https://github.com/rubenmv/chrome-extension-custom-button/issues |
支援的語言 | 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" } |