ChromeBackground
Add your own custom background to Google.com
Apa itu ChromeBackground?
ChromeBackground adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Add your own custom background to Google.com".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ChromeBackground
Unduh file ekstensi ChromeBackground dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Add custom background to https://www.gooogle.com/*
Informasi Dasar Ekstensi
Nama | |
ID | hiohpginbllenbjfohemjliffknnafnn |
URL Resmi | https://chromewebstore.google.com/detail/chromebackground/hiohpginbllenbjfohemjliffknnafnn |
Deskripsi | Add your own custom background to Google.com |
Ukuran File | 1.44 MB |
Jumlah Instalasi | 18 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2021-11-16 |
Tanggal Publikasi | 2021-11-15 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Unknown |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/seanjyjy/chrome-bg |
URL Halaman Bantuan | https://github.com/seanjyjy/chrome-bg |
Bahasa yang Didukung | 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" ] } |