Custom Button
Customize a button.
Custom Button क्या है?
Custom Button Rubén Martínez द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Customize a button."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Custom Button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" } |