人狼Onlineというサイトで各メッセージの作成された日時を表示します
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "timelogger",
"version": "1.1.0",
"description": "人狼Onlineというサイトで各メッセージの作成された日時を表示します",
"icons": {
"16": "icons/icon.png",
"48": "icons/icon.png",
"128": "icons/icon.png"
},
"web_accessible_resources": [
{
"resources": [
"main_for_player.js"
],
"matches": [
"https://zinro.net/*"
]
}
],
"content_scripts": [
{
"matches": [
"https://zinro.net/m/player.php*",
"http://35.166.226.192/m/player.php*",
"http://jinro.xia.jp/m/player.php*"
],
"run_at": "document_start",
"js": [
"inject_for_player.js"
]
},
{
"matches": [
"https://zinro.net/m/log.php*",
"http://35.166.226.192/m/log.php*",
"http://jinro.xia.jp/m/log.php*"
],
"run_at": "document_start",
"js": [
"jquery.js",
"jquery.cookie.js",
"main_for_log.js"
]
}
]
}