Add tag discription system

When you hover the mouse cursor over a tag on Wikidot, the description of the tag list on SCP-JP, SCP-EN and SCP-CN is displayed.

¿Qué es Add tag discription system?

Add tag discription system es una extensión de Chrome desarrollada por R74, y su función principal es "When you hover the mouse cursor over a tag on Wikidot, the description of the tag list on SCP-JP, SCP-EN and SCP-CN is displayed.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Add tag discription system

Descarga archivos de extensión Add tag discription system 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

                        Tag at the bottom of the Page with a description.

When you hover the mouse cursor over a tag in Wikidot, it will show the description in the tag list on SCP-JP, SCP-EN and SCP-CN.
You can change the display position, background color, and text color in the options.

The SCP Logo used for the icon
Author: Aelanna
Source: http://www.scp-wiki.net/dr-mackenzie-s-sketchbook
CC BY-SA 3.0                    

Información Básica de la Extensión

Nombre Add tag discription system Add tag discription system
ID chihgmiknkmejndbpilmoopjlpfpjljg
URL Oficial https://chrome.google.com/webstore/detail/chihgmiknkmejndbpilmoopjlpfpjljg
Descripción When you hover the mouse cursor over a tag on Wikidot, the description of the tag list on SCP-JP, SCP-EN and SCP-CN is displayed.
Tamaño del Archivo 53.64 KB
Cantidad de Instalaciones 25
Versión Actual 3.0.3
Última Actualización 2021-02-13
Fecha de Publicación 2020-10-31
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador R74
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://github.com/RTa-technology/add-tag-description-system
Idiomas Soportados en,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_Name__",
    "version": "3.0.3",
    "description": "__MSG_Description__",
    "author": "RTa_technology",
    "homepage_url": "https:\/\/github.com\/RTa-technology\/add-tag-description-system",
    "default_locale": "ja",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.scp-wiki.net\/*",
                "http:\/\/*.wikidot.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "system"
    },
    "icons": {
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_page": "option\/option.html"
}