Tab Renamer

Take control of your tabs

¿Qué es Tab Renamer?

Tab Renamer es una extensión de Chrome desarrollada por Elon Z, y su función principal es "Take control of your tabs".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Tab Renamer

Descarga archivos de extensión Tab Renamer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This is a fork version of Tab Modifier with more features/bugfix.
1. [New Feature] Support unique rules by url,
2. [New Feature] Disable a rule temporarily,
3. [New Feature] Allow to hide right-click menu item.
4. [Bug Fix] Selector grammar not working when element is lazy-loaded.                    

Información Básica de la Extensión

Nombre Tab Renamer Tab Renamer
ID kpijejpdbpeaakidlcopnbjohbfimnod
URL Oficial https://chromewebstore.google.com/detail/tab-renamer/kpijejpdbpeaakidlcopnbjohbfimnod
Descripción Take control of your tabs
Tamaño del Archivo 98.48 KB
Cantidad de Instalaciones 238
Versión Actual 0.23.0
Última Actualización 2021-02-28
Fecha de Publicación 2021-02-27
Calificación 3.50/5 Total de 2 Calificaciones
Desarrollador Elon Z
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/imageslr/chrome-tab-modifier
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Renamer",
    "version": "0.23.0",
    "description": "Take control of your tabs",
    "homepage_url": "https:\/\/github.com\/imageslr\/chrome-tab-modifier",
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon_48.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/www.google-analytics.com; object-src 'self'",
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*"
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "contextMenus",
        "alarms",
        "notifications"
    ]
}