Minimap
An extension that shows you a minimap of the current page.
O que é Minimap?
Minimap é uma extensão do Chrome desenvolvida por JohnPhamous, e sua principal característica é "An extension that shows you a minimap of the current page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Minimap
Baixe arquivos de extensão Minimap no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Minimap |
ID | cdlcndjickhogcfodaaiofbgdmefmgpp |
URL Oficial | https://chromewebstore.google.com/detail/minimap/cdlcndjickhogcfodaaiofbgdmefmgpp |
Descrição | An extension that shows you a minimap of the current page. |
Tamanho do Arquivo | 71.72 KB |
Contagem de Instalações | 18 |
Versão Atual | 1.0.0 |
Última Atualização | 2021-10-02 |
Data de Publicação | 2021-10-02 |
Desenvolvedor | JohnPhamous |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://pham.codes |
Idiomas Suportados | 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" ] } ] } |