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.

Add tag discription system란 무엇입니까?

Add tag discription system은(는) R74에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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."입니다.

확장 프로그램 스크린샷

screenshot

Add tag discription system 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Add tag discription system Add tag discription system
ID chihgmiknkmejndbpilmoopjlpfpjljg
공식 URL https://chrome.google.com/webstore/detail/chihgmiknkmejndbpilmoopjlpfpjljg
설명 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.
파일 크기 53.64 KB
설치 횟수 25
현재 버전 3.0.3
최근 업데이트 2021-02-13
출시 날짜 2020-10-31
평점 5.00/5 총 1 개의 평점
개발자 R74
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/RTa-technology/add-tag-description-system
지원되는 언어 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"
}