Tabs2Text
Export all your opened tabs to a CSV, HTML, JSON or Markdown file.
ما هو Tabs2Text؟
Tabs2Text هو إضافة Chrome تم تطويرها بواسطة dezese.dev، والميزة الرئيسية لها هي "Export all your opened tabs to a CSV, HTML, JSON or Markdown file.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tabs2Text
قم بتنزيل ملفات الامتداد Tabs2Text بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Tabs2Text is an extension to export all your opened tabs, from a browser window or from all windows, to a CSV, HTML, JSON or Markdown file type. It includes the tabs' title and URL information. معلومات أساسية عن التمديد
| الاسم | |
| ID | cgajadebepocjjpimelagpannemlggoi |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/tabs2text/cgajadebepocjjpimelagpannemlggoi |
| الوصف | Export all your opened tabs to a CSV, HTML, JSON or Markdown file. |
| حجم الملف | 26.47 KB |
| عدد التثبيتات | 102 |
| النسخة الحالية | 2020.6.11 |
| آخر تحديث | 2020-06-14 |
| تاريخ النشر | 2020-06-14 |
| المطور | dezese.dev |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://www.github.com/deniszanin/tabs2text |
| عنوان صفحة المساعدة | https://www.github.com/deniszanin/tabs2text |
| اللغات المدعومة | en,en-GB,en-US,pt-BR,pt-PT |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icons\/t2f-16.png",
"32": "icons\/t2f-32.png",
"48": "icons\/t2f-48.png",
"96": "icons\/t2f-96.png"
},
"default_popup": "tabs2text-popup.html",
"default_title": "Tabs2Text"
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"commands": {
"t2t-export": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"chromeos": "Ctrl+Shift+U",
"linux": "Ctrl+Shift+U",
"mac": "Command+Shift+U",
"windows": "Ctrl+Shift+U"
},
"description": "__MSG_commandDesc__",
"global": true
}
},
"default_locale": "en",
"description": "__MSG_appDesc__",
"homepage_url": "https:\/\/github.com\/deniszanin\/tabs2text",
"icons": {
"16": "icons\/t2f-16.png",
"32": "icons\/t2f-32.png",
"48": "icons\/t2f-48.png",
"96": "icons\/t2f-96.png",
"128": "icons\/t2f-128.png"
},
"incognito": "spanning",
"manifest_version": 2,
"minimum_chrome_version": "55",
"name": "Tabs2Text",
"options_ui": {
"page": "tabs2text-settings.html"
},
"permissions": [
"tabs",
"downloads",
"storage"
],
"version": "2020.6.11"
} | |