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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย R74 และคุณลักษณะหลักของมันคือ "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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add tag discription system
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" } |