Skip to content

Commit 0201425

Browse files
init
0 parents  commit 0201425

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# 例の改行を直すやつ
2+
「あなたとJAVA,今すぐダウンロード」が美しく表示されるようになります。
3+
4+
## インストール方法
5+
1. Chrome拡張を開きます
6+
2. 右上のデベロッパーモードを有効にします
7+
3. 「パッケージ化されていない拡張機能を読み込む」で、展開したzipファイルの中身を選択してください
8+
![インストールされた状態](https://user-images.githubusercontent.com/16236972/51466274-217e8c00-1dad-11e9-8e50-1ed8df4cb95f.png)
9+
4. https://www.java.com/ja/ にアクセスします
10+
11+
## 使用時のスクリーンショット
12+
![スクリーンショット](https://user-images.githubusercontent.com/16236972/51466325-4410a500-1dad-11e9-9083-06152a93708c.png)
13+

icon.png

1.26 KB
Loading

index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
targetH1 = document.querySelector('.jvc0v1 .jvc0w1 .jvc0w2 h1');
2+
targetH1.style.fontSize = '60px';
3+

manifest.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "例の改行を直すやつ",
3+
"description": "「あなたとJAVA, 今すぐダウンロード」が美しく表示されます。",
4+
"version": "1.0",
5+
"content_scripts": [{
6+
"js": ["index.js"],
7+
"matches": ["https://www.java.com/ja/"]
8+
}],
9+
"browser_action": {
10+
"default_icon": "icon.png",
11+
"default_title": "例の改行を直すやつ"
12+
},
13+
"manifest_version": 2
14+
}

0 commit comments

Comments
 (0)