ChromeBackground
Add your own custom background to Google.com
What is ChromeBackground?
ChromeBackground is a Chrome extension developed by Unknown, and its main feature is "Add your own custom background to Google.com".
Extension Screenshots
Download ChromeBackground Extension CRX File
Download ChromeBackground extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Add custom background to https://www.gooogle.com/*
Extension Basic Information
Name | |
ID | hiohpginbllenbjfohemjliffknnafnn |
Official URL | https://chromewebstore.google.com/detail/chromebackground/hiohpginbllenbjfohemjliffknnafnn |
Description | Add your own custom background to Google.com |
File Size | 1.44 MB |
Installation Count | 18 |
Current Version | 1.0.0 |
Last Updated | 2021-11-16 |
Publish Date | 2021-11-15 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Unknown |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/seanjyjy/chrome-bg |
Help Page URL | https://github.com/seanjyjy/chrome-bg |
Supported Languages | 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" ] } |