Tab Rename
Adds the ability to change the title of your tabs
ما هو Tab Rename؟
Tab Rename هو إضافة Chrome تم تطويرها بواسطة Realyze، والميزة الرئيسية لها هي "Adds the ability to change the title of your tabs".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tab Rename
قم بتنزيل ملفات الامتداد Tab Rename بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a simple extension to rename the active tab. It works by changing the title attribute of the DOM.
معلومات أساسية عن التمديد
الاسم | Tab Rename |
ID | lgoehggcekcijojdfdifnfknonmeillp |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tab-rename/lgoehggcekcijojdfdifnfknonmeillp |
الوصف | Adds the ability to change the title of your tabs |
حجم الملف | 12.24 KB |
عدد التثبيتات | 551 |
النسخة الحالية | 1.0 |
آخر تحديث | 2021-02-23 |
تاريخ النشر | 2021-02-22 |
تقييم | 3.17/5 مجموع تقييمات 6 |
المطور | Realyze |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Rename", "description": "Adds the ability to change the title of your tabs", "version": "1.0", "manifest_version": 2, "permissions": [ "activeTab", "tabs" ], "icons": { "16": "icons\/tag16.png", "48": "icons\/pen-icon48.png", "128": "icons\/pen-icon128.png" }, "browser_action": { "default_icon": "icons\/tag16.png", "default_popup": "popup.html" }, "background": { "scripts": [ "rename.js" ] }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+R" } } } } |