Minimap
An extension that shows you a minimap of the current page.
What is Minimap?
Minimap is a Chrome extension developed by JohnPhamous, and its main feature is "An extension that shows you a minimap of the current page.".
Extension Screenshots
Download Minimap Extension CRX File
Download Minimap 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
An extension that gives you a minimap of the current page. You can click anywhere on the minimap to scroll to that position on the page.
Extension Basic Information
Name | Minimap |
ID | cdlcndjickhogcfodaaiofbgdmefmgpp |
Official URL | https://chromewebstore.google.com/detail/minimap/cdlcndjickhogcfodaaiofbgdmefmgpp |
Description | An extension that shows you a minimap of the current page. |
File Size | 71.72 KB |
Installation Count | 18 |
Current Version | 1.0.0 |
Last Updated | 2021-10-02 |
Publish Date | 2021-10-02 |
Developer | JohnPhamous |
[email protected] | |
Payment Type | free |
Extension Website | https://pham.codes |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Minimap", "version": "1.0.0", "icons": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "description": "An extension that shows you a minimap of the current page.", "homepage_url": "https:\/\/github.com\/abhijithvijayan\/web-extension-starter", "short_name": "Minimap", "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self'; object-src 'self'", "author": "johnphamous", "minimum_chrome_version": "49", "browser_action": { "default_icon": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "default_title": "tiny title", "chrome_style": false }, "background": { "scripts": [ "js\/background.bundle.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/contentScript.bundle.js" ] } ] } |