Skip to content

Commit

Permalink
include and exclude domain
Browse files Browse the repository at this point in the history
  • Loading branch information
makinzm committed Dec 21, 2024
1 parent 7eb95c9 commit b5adeaf
Show file tree
Hide file tree
Showing 12 changed files with 248 additions and 38 deletions.
2 changes: 1 addition & 1 deletion dist/background.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/content_script.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions dist/options/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,18 @@
<h1>Cliplex</h1>
</header>

<h2>ドメインフィルターモード</h2>
<div>
<label>
<input type="radio" name="domainFilterMode" value="exclude" id="radioExclude" />
Excludeモード (ブラックリスト)
</label>
<label>
<input type="radio" name="domainFilterMode" value="include" id="radioInclude" checked/>
Includeモード (ホワイトリスト)
</label>
</div>

<!-- ドメインブロック -->
<h2>ドメインブロック設定</h2>
<div>
Expand All @@ -92,6 +104,13 @@ <h2>ドメインブロック設定</h2>
</div>
<ul id="excludedDomainList"></ul>

<h2>ドメイン限定設定 (Included)</h2>
<div>
<input type="text" id="includedDomainInput" placeholder="example.org" />
<button id="addIncludedDomainButton">ドメインを追加</button>
</div>
<ul id="includedDomainList"></ul>

<!-- フィルタ -->
<div>
<label>日付範囲(開始): <input type="date" id="dateFrom" /></label>
Expand Down
Loading

0 comments on commit b5adeaf

Please sign in to comment.