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