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 |
| 官方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"
]
}
]
} | |