Meteor MiniMongo Explorer
Handy extension for reviewing local Meteor database - MiniMongo.
What is Meteor MiniMongo Explorer?
Meteor MiniMongo Explorer is a Chrome extension developed by radekmie, and its main feature is "Handy extension for reviewing local Meteor database - MiniMongo.".
Extension Screenshots
Download Meteor MiniMongo Explorer Extension CRX File
Download Meteor MiniMongo Explorer 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
Handy extension for reviewing local Meteor database - MiniMongo.
Extension Basic Information
Name | Meteor MiniMongo Explorer |
ID | bpbalpgdnkieljogofnfjmgcnjcaiheg |
Official URL | https://chromewebstore.google.com/detail/meteor-minimongo-explorer/bpbalpgdnkieljogofnfjmgcnjcaiheg |
Description | Handy extension for reviewing local Meteor database - MiniMongo. |
File Size | 133 KB |
Installation Count | 1,569 |
Current Version | 1.3.1 |
Last Updated | 2019-03-03 |
Publish Date | 2019-03-03 |
Rating | 4.83/5 Total 12 Ratings |
Developer | radekmie |
Payment Type | free |
Extension Website | https://github.com/radekmie/MiniMongoExplorer |
Help Page URL | https://github.com/radekmie/MiniMongoExplorer/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Meteor MiniMongo Explorer", "version": "1.3.1", "short_name": "MiniMongoExplorer", "homepage_url": "https:\/\/github.com\/radekmie\/MiniMongoExplorer", "permissions": [ "tabs" ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "64": "images\/icon64.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "devtools_page": "devtools.html", "manifest_version": 2, "minimum_chrome_version": "26", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |