Minimap
An extension that shows you a minimap of the current page.
什麼是Minimap?
Minimap是由JohnPhamous開發的Chrome擴展程式,該擴展的主要功能是“An extension that shows you a minimap of the current page.”。
擴展截圖
下載Minimap擴展crx文件
下載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 |
| 官方網址 | 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"
]
}
]
} | |