Minimap
An extension that shows you a minimap of the current page.
Co je Minimap?
Minimap je rozšíření Chrome vyvinuté JohnPhamous, a jeho hlavní funkcí je „An extension that shows you a minimap of the current page.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Minimap
Stáhněte si soubory rozšíření Minimap ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Minimap |
ID | cdlcndjickhogcfodaaiofbgdmefmgpp |
Oficiální URL | https://chromewebstore.google.com/detail/minimap/cdlcndjickhogcfodaaiofbgdmefmgpp |
Popis | An extension that shows you a minimap of the current page. |
Velikost souboru | 71.72 KB |
Počet instalací | 18 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2021-10-02 |
Datum Vydání | 2021-10-02 |
Vývojář | JohnPhamous |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://pham.codes |
Podporované Jazyky | 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" ] } ] } |