Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
comorebi-notes committed Jan 21, 2019
0 parents commit 0201425
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# 例の改行を直すやつ
「あなたとJAVA,今すぐダウンロード」が美しく表示されるようになります。

## インストール方法
1. Chrome拡張を開きます
2. 右上のデベロッパーモードを有効にします
3. 「パッケージ化されていない拡張機能を読み込む」で、展開したzipファイルの中身を選択してください
![インストールされた状態](https://user-images.githubusercontent.com/16236972/51466274-217e8c00-1dad-11e9-8e50-1ed8df4cb95f.png)
4. https://www.java.com/ja/ にアクセスします

## 使用時のスクリーンショット
![スクリーンショット](https://user-images.githubusercontent.com/16236972/51466325-4410a500-1dad-11e9-9083-06152a93708c.png)

Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
targetH1 = document.querySelector('.jvc0v1 .jvc0w1 .jvc0w2 h1');
targetH1.style.fontSize = '60px';

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

0 comments on commit 0201425

Please sign in to comment.