-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0201425
Showing
4 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |