Inbox Zero Progress Bar
progress bar
What is Inbox Zero Progress Bar?
Inbox Zero Progress Bar is a Chrome extension developed by http://weekplan.net, and its main feature is "progress bar".
Extension Screenshots
Download Inbox Zero Progress Bar Extension CRX File
Download Inbox Zero Progress Bar 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
Keep track of your progress towards Inbox Zero within Gmail!
Extension Basic Information
Name | |
ID | edehcddfcmobknfgoaodppjdlobfidld |
Official URL | https://chrome.google.com/webstore/detail/inbox-zero-progress-bar/edehcddfcmobknfgoaodppjdlobfidld |
Description | progress bar |
File Size | 43.5 KB |
Installation Count | 48 |
Current Version | 0.1 |
Last Updated | 2016-01-30 |
Publish Date | 2016-01-30 |
Rating | 3.50/5 Total 4 Ratings |
Developer | http://weekplan.net |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://wise.pm/privacy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Inbox Zero Progress Bar", "version": "0.1", "manifest_version": 2, "description": "progress bar", "icons": { "64": "logo.png", "32": "logo.png", "16": "logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "css": [ "inline_app\/css\/progress.css" ], "js": [ "inline_app\/js\/lib\/jquery.js", "contentscript.js" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "storage", "tabs", "https:\/\/mail.google.com\/*" ], "web_accessible_resources": [ "inline_app\/js\/script.js" ] } |