Minimap
An extension that shows you a minimap of the current page.
Apa itu Minimap?
Minimap adalah ekstensi Chrome yang dikembangkan oleh JohnPhamous, dan fitur utamanya adalah "An extension that shows you a minimap of the current page.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Minimap
Unduh file ekstensi Minimap dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Minimap |
ID | cdlcndjickhogcfodaaiofbgdmefmgpp |
URL Resmi | https://chromewebstore.google.com/detail/minimap/cdlcndjickhogcfodaaiofbgdmefmgpp |
Deskripsi | An extension that shows you a minimap of the current page. |
Ukuran File | 71.72 KB |
Jumlah Instalasi | 18 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2021-10-02 |
Tanggal Publikasi | 2021-10-02 |
Pengembang | JohnPhamous |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://pham.codes |
Bahasa yang Didukung | 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" ] } ] } |