Minimap
An extension that shows you a minimap of the current page.
Qu'est-ce que Minimap ?
Minimap est une extension Chrome développée par JohnPhamous, et sa fonction principale est "An extension that shows you a minimap of the current page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Minimap
Téléchargez les fichiers d'extension Minimap au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Minimap |
ID | cdlcndjickhogcfodaaiofbgdmefmgpp |
URL Officiel | https://chromewebstore.google.com/detail/minimap/cdlcndjickhogcfodaaiofbgdmefmgpp |
Description | An extension that shows you a minimap of the current page. |
Taille du Fichier | 71.72 KB |
Nombre d'Installations | 18 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2021-10-02 |
Date de Publication | 2021-10-02 |
Développeur | JohnPhamous |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://pham.codes |
Langues Prises en Charge | 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" ] } ] } |