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'est-ce que Add tag discription system ?
Add tag discription system est une extension Chrome développée par R74, et sa fonction principale est "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.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Add tag discription system
Téléchargez les fichiers d'extension Add tag discription system au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | chihgmiknkmejndbpilmoopjlpfpjljg |
URL Officiel | https://chrome.google.com/webstore/detail/chihgmiknkmejndbpilmoopjlpfpjljg |
Description | 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. |
Taille du Fichier | 53.64 KB |
Nombre d'Installations | 25 |
Version Actuelle | 3.0.3 |
Dernière Mise à Jour | 2021-02-13 |
Date de Publication | 2020-10-31 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | R74 |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/RTa-technology/add-tag-description-system |
Langues Prises en Charge | 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" } |