Minimap
An extension that shows you a minimap of the current page.
Τι είναι το Minimap;
Το Minimap είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον JohnPhamous, και η κύρια λειτουργία του είναι "An extension that shows you a minimap of the current page.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Minimap
Λήψη αρχείων επέκτασης Minimap σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | cdlcndjickhogcfodaaiofbgdmefmgpp |
| Επίσημο URL | https://chromewebstore.google.com/detail/minimap/cdlcndjickhogcfodaaiofbgdmefmgpp |
| Περιγραφή | An extension that shows you a minimap of the current page. |
| Μέγεθος Αρχείου | 71.72 KB |
| Αριθμός Εγκαταστάσεων | 18 |
| Τρέχουσα Έκδοση | 1.0.0 |
| Τελευταία Ενημέρωση | 2021-10-02 |
| Ημερομηνία Δημοσίευσης | 2021-10-02 |
| Προγραμματιστής | JohnPhamous |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| Ιστότοπος Επέκτασης | https://pham.codes |
| Υποστηριζόμενες Γλώσσες | 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"
]
}
]
} | |