My Screensaver
My screensaver for Chromecast images.
What is My Screensaver?
My Screensaver is a Chrome extension developed by Michael McNabb, and its main feature is "My screensaver for Chromecast images.".
Extension Screenshots
Download My Screensaver Extension CRX File
Download My Screensaver 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
Chromecast has fantastic wallpaper images. This extension opens them in a chrome browser at fullscreen. All the work has been done by google, thank them not me. Maybe in the future I can make some options and do a better job.
Extension Basic Information
Name | |
ID | dbikmecmbfacgojaafignjockkhnjlbk |
Official URL | https://chrome.google.com/webstore/detail/my-screensaver/dbikmecmbfacgojaafignjockkhnjlbk |
Description | My screensaver for Chromecast images. |
File Size | 17.26 KB |
Installation Count | 1,000 |
Current Version | 0.2 |
Last Updated | 2015-06-17 |
Publish Date | 2015-06-17 |
Rating | 3.17/5 Total 6 Ratings |
Developer | Michael McNabb |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "My Screensaver", "description": "My screensaver for Chromecast images.", "version": "0.2", "icons": { "128": "images\/icon.png" }, "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/google.com\/cast\/chromecast\/home" ], "css": [ "css\/ScreenSaver.css" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "images\/icon.png" }, "options_page": "options.html" } |