ChromeBackground

Add your own custom background to Google.com

ما هو ChromeBackground؟

ChromeBackground هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Add your own custom background to Google.com".

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

screenshot

تحميل ملف CRX للإضافة ChromeBackground

قم بتنزيل ملفات الامتداد ChromeBackground بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Add custom background to https://www.gooogle.com/*                    

معلومات أساسية عن التمديد

الاسم ChromeBackground ChromeBackground
ID hiohpginbllenbjfohemjliffknnafnn
عنوان URL الرسمي https://chromewebstore.google.com/detail/chromebackground/hiohpginbllenbjfohemjliffknnafnn
الوصف Add your own custom background to Google.com
حجم الملف 1.44 MB
عدد التثبيتات 18
النسخة الحالية 1.0.0
آخر تحديث 2021-11-16
تاريخ النشر 2021-11-15
تقييم 5.00/5 مجموع تقييمات 1
المطور Unknown
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/seanjyjy/chrome-bg
عنوان صفحة المساعدة https://github.com/seanjyjy/chrome-bg
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ChromeBackground",
    "description": "Add your own custom background to Google.com",
    "version": "1.0.0",
    "author": "Sean Lum",
    "icons": {
        "16": ".\/images\/background16.png",
        "48": ".\/images\/background48.png",
        "128": ".\/images\/background128.png"
    },
    "page_action": {
        "default_icon": ".\/images\/background16.png",
        "default_popup": "popup.html",
        "default_title": "Custom google chrome background"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/www.google.com\/*",
        "declarativeContent",
        "storage",
        "notifications",
        "webNavigation"
    ]
}