Custom Button

Customize a button.

ما هو Custom Button؟

Custom Button هو إضافة Chrome تم تطويرها بواسطة Rubén Martínez، والميزة الرئيسية لها هي "Customize a button.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Custom Button

قم بتنزيل ملفات الامتداد Custom Button بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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
عنوان صفحة المساعدة 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"
}