Minimap
An extension that shows you a minimap of the current page.
Vad är Minimap?
Minimap är en Chrome-tillägg utvecklad av JohnPhamous, och dess huvudfunktion är "An extension that shows you a minimap of the current page.".
Tilläggsskärmbilder
Ladda ner Minimap-förlängningens CRX-fil
Ladda ner Minimap-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | cdlcndjickhogcfodaaiofbgdmefmgpp |
| Officiell webbadress | https://chromewebstore.google.com/detail/minimap/cdlcndjickhogcfodaaiofbgdmefmgpp |
| Beskrivning | An extension that shows you a minimap of the current page. |
| Filstorlek | 71.72 KB |
| Antal Installationer | 18 |
| Aktuell Version | 1.0.0 |
| Senast Uppdaterad | 2021-10-02 |
| Publiceringsdatum | 2021-10-02 |
| Utvecklare | JohnPhamous |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://pham.codes |
| Stödda Språk | 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"
]
}
]
} | |