Minimap
An extension that shows you a minimap of the current page.
Was ist Minimap?
Minimap ist eine Chrome-Erweiterung, die von JohnPhamous entwickelt wurde, und ihr Hauptmerkmal ist "An extension that shows you a minimap of the current page.".
Erweiterungsscreenshots
Minimap-Erweiterungs-CRX-Datei herunterladen
Laden Sie Minimap-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cdlcndjickhogcfodaaiofbgdmefmgpp |
| Offizielle URL | https://chromewebstore.google.com/detail/minimap/cdlcndjickhogcfodaaiofbgdmefmgpp |
| Beschreibung | An extension that shows you a minimap of the current page. |
| Dateigröße | 71.72 KB |
| Installationsanzahl | 18 |
| Aktuelle Version | 1.0.0 |
| Letztes Update | 2021-10-02 |
| Veröffentlichungsdatum | 2021-10-02 |
| Entwickler | JohnPhamous |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://pham.codes |
| Unterstützte Sprachen | 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"
]
}
]
} | |