Inspect and view changes in 遊戯王DB⇔Wiki source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "遊戯王DB⇔Wiki",
"version": "1.2.0",
"manifest_version": 2,
"description": "遊戯王公式カードデータベースと遊戯王カードWikiのカード詳細ページを相互に行き来できる拡張機能です。ラッシュデュエルにも対応しています。",
"icons": {
"16": "icons/icon-16x16.png",
"48": "icons/icon-48x48.png",
"64": "icons/icon-64x64.png",
"96": "icons/icon-96x96.png",
"128": "icons/icon-128x128.png"
},
"permissions": [
"tabs",
"storage",
"menus"
],
"applications": {
"gecko": {
"id": "yunomi@ygodbwiki.com"
}
},
"content_scripts": [
{
"matches": [
"https://www.db.yugioh-card.com/*/*cid*",
"https://yugioh-wiki.net/*%A1%D4%*",
"https://rush.yugioh-wiki.net/*%E3%80%8A*",
"https://yugioh-wiki.net/*%E3%80%8A*"
],
"js": [
"content_scripts/nav-icon.js"
],
"css": [
"content_scripts/nav-icon.css"
]
}
],
"background": {
"scripts": [
"js/encoding.js",
"js/PDC_list.js",
"background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "遊戯王DB⇔Wiki",
"default_popup": "popup/popup.html"
},
"commands": {
"key_page_navigation": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "MacCtrl+Shift+Y"
},
"description": "データベース⇔Wikiの移動"
},
"key_google_search": {
"suggested_key": {
"default": "Ctrl+Shift+G",
"mac": "MacCtrl+Shift+G"
},
"description": "カード名をGoogle検索"
}
},
"options_ui": {
"page": "options/options.html",
"chrome_style": true
},
"web_accessible_resources": [
"icons/iconDW-128x128.png"
],
"homepage_url": "https://github.com/uyayimon/YuGiOh-CardDB-Wiki/wiki"
}