ChromeBackground
Add your own custom background to Google.com
ChromeBackgroundคืออะไร?
ChromeBackground เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Add your own custom background to Google.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChromeBackground
ดาวน์โหลดไฟล์ส่วนขยาย ChromeBackground ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Add custom background to https://www.gooogle.com/*
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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 |
URL หน้าช่วยเหลือ | 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" ] } |