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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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"
]
}
]
} | |