Browser Minimizer
This extension is used to check whether your browser is minimized or not.
What is Browser Minimizer?
Browser Minimizer is a Chrome extension developed by trevorgreene530, and its main feature is "This extension is used to check whether your browser is minimized or not.".
Extension Screenshots
Download Browser Minimizer Extension CRX File
Download Browser Minimizer 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
Extension Basic Information
Name | |
ID | bkljdgddmojlkceofmlbkefglnhhhegg |
Official URL | https://chromewebstore.google.com/detail/browser-minimizer/bkljdgddmojlkceofmlbkefglnhhhegg |
Description | This extension is used to check whether your browser is minimized or not. |
File Size | 164 KB |
Installation Count | 45 |
Current Version | 1.0.2 |
Last Updated | 2018-10-26 |
Publish Date | 2018-10-26 |
Developer | trevorgreene530 |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Browser Minimizer", "description": "This extension is used to check whether your browser is minimized or not.", "version": "1.0.2", "icons": { "16": "Icon-16.png", "48": "Icon-48.png", "64": "Icon-64.png" }, "permissions": [ "activeTab" ], "web_accessible_resources": [ "jquery.js" ], "content_scripts": [ { "matches": [ "http:\/\/*.facebook.com\/*", "https:\/\/*.facebook.com\/*" ], "js": [ "browsermin.js" ] } ], "browser_action": { "default_icon": "logo.png", "default_title": "Browser Minimizer checker" }, "background": { "persistent": false, "scripts": [ "browsermin.js", "background.js" ] } } |