Table of Contents Sidebar
A lightweight plugin that generates a table of contents sidebar for navigating or copying
ما هو Table of Contents Sidebar؟
Table of Contents Sidebar هو إضافة Chrome تم تطويرها بواسطة codedraken، والميزة الرئيسية لها هي "A lightweight plugin that generates a table of contents sidebar for navigating or copying".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Table of Contents Sidebar
قم بتنزيل ملفات الامتداد Table of Contents Sidebar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Quickly and easily generate a table of contents for articles you're reading or for use on articles you write. This extension currently only supports the Medium platform. ( https://medium.com/ ) It's also free and open-source. You can get the code for it here: https://github.com/CodeDraken/table-of-contents-generator Icon created by Icons8 @ https://icons8.com/
معلومات أساسية عن التمديد
الاسم | Table of Contents Sidebar |
ID | gnfemeofnjpbaigdpammdejmmjhdejih |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih |
الوصف | A lightweight plugin that generates a table of contents sidebar for navigating or copying |
حجم الملف | 128 KB |
عدد التثبيتات | 896 |
النسخة الحالية | 1.0 |
آخر تحديث | 2019-05-27 |
تاريخ النشر | 2019-05-27 |
تقييم | 2.67/5 مجموع تقييمات 3 |
المطور | codedraken |
نوع الدفع | free |
موقع الإضافة | https://github.com/CodeDraken/table-of-contents-generator |
عنوان صفحة المساعدة | https://github.com/CodeDraken/table-of-contents-generator/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Table of Contents Sidebar", "version": "1.0", "author": "CodeDraken", "description": "A lightweight plugin that generates a table of contents sidebar for navigating or copying", "manifest_version": 2, "icons": { "128": ".\/assets\/icon128.png" }, "browser_action": { "default_title": "ToC", "default_popup": ".\/html\/popup.html" }, "background": { "scripts": [ ".\/js\/background.js" ], "persistent": false }, "permissions": [ "activeTab" ] } |