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.”。
擴展截圖
下載Add tag discription system擴展crx文件
下載Add tag discription system擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | |
ID | chihgmiknkmejndbpilmoopjlpfpjljg |
官方網址 | 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" } |