TOC Medium
Table Of Contents generator for Medium stories
ما هو TOC Medium؟
TOC Medium هو إضافة Chrome تم تطويرها بواسطة https://vdeantoni.com، والميزة الرئيسية لها هي "Table Of Contents generator for Medium stories".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة TOC Medium
قم بتنزيل ملفات الامتداد TOC Medium بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extensions adds a new action to Medium's editor: "Add a Table of Contents". Upon selection, the extension finds all the heading tags and creates a list with their titles and links.
Once created the TOC won't be updated, if headings change, a new TOC will need to be generated.
Github repo: https://github.com/vdeantoni/toc-medium
Pull requests and feature requests via Issues are appreciated. معلومات أساسية عن التمديد
| الاسم | |
| ID | ppcdgggkanhfoghepgomkbbnkggbiecn |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/toc-medium/ppcdgggkanhfoghepgomkbbnkggbiecn |
| الوصف | Table Of Contents generator for Medium stories |
| حجم الملف | 16.05 KB |
| عدد التثبيتات | 2,544 |
| النسخة الحالية | 0.7 |
| آخر تحديث | 2023-12-30 |
| تاريخ النشر | 2020-04-10 |
| تقييم | 3.92/5 مجموع تقييمات 13 |
| المطور | https://vdeantoni.com |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/vdeantoni/toc-medium |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "TOC Medium",
"version": "0.7",
"description": "Table Of Contents generator for Medium stories",
"manifest_version": 3,
"author": "Vinicius De Antoni",
"short_name": "toc-medium",
"permissions": [],
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/medium.com\/*"
],
"css": [
"tooltip.css"
],
"js": [
"tooltip.js"
]
}
],
"icons": {
"16": "images\/toc-medium16.png",
"32": "images\/toc-medium32.png",
"48": "images\/toc-medium48.png",
"128": "images\/toc-medium128.png"
}
} | |