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 |
公式URL | 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 |
Eメール | [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" } |