Skip to content

Commit

Permalink
1.0.3を公開しました
Browse files Browse the repository at this point in the history
・フォントの修正を行いました。
・フォントを外部から取得ではなく、内包するようにしました。
  • Loading branch information
koromoko10 committed Jan 24, 2025
1 parent 3fd8822 commit f71faf1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions Manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "YouTube コメントフィルター",
"version": "1.0.2",
"version": "1.0.3",
"description": "特定のパターンに合うYouTubeコメントを非表示にします",
"permissions": ["scripting", "storage"],
"host_permissions": [
Expand All @@ -16,6 +16,12 @@
"js": ["content.js"]
}
],
"web_accessible_resources": [
{
"resources": ["fonts/LINESeedJP_OTF_Rg.woff"],
"matches": ["<all_urls>"]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "クリックするとコメントの非表示数を確認できます",
Expand All @@ -38,5 +44,5 @@
}
}
},
"version_name": "Beta 1.0.2"
"version_name": "Beta 1.0.3(フォント修正版)"
}
Binary file added fonts/LINESeedJP_OTF_Rg.woff
Binary file not shown.
2 changes: 1 addition & 1 deletion popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
@font-face {
font-family: "LINE_Rg";
font-weight: 400;
src: url(https://koromoko10.github.io/fonts/LINESeed_JP/LINESeedJP_OTF_Rg.woff) format("woff");
src: url(fonts/LINESeedJP_OTF_Rg.woff) format("woff");
}

body {
Expand Down

0 comments on commit f71faf1

Please sign in to comment.