はてなミュート
はてなブックマークの記事をキーワードやURLでミュート
What is はてなミュート?
はてなミュート is a Chrome extension developed by Cside, and its main feature is "はてなブックマークの記事をキーワードやURLでミュート".
Extension Screenshots
Download はてなミュート Extension CRX File
Download はてなミュート extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
機能 1. 指定したワードを含む記事をミュート 2. 指定した URL (の一部) を URL に含む記事をミュート 3. 指定した記事を単体で非表示にする 4. 訪問済みの記事を目立たなくする( on/off 選択可) 5. ブコメページを訪問済みの記事を目立たなくする( on/off 選択可) 見たくない記事をミュートして、快適なはてなブックマークを楽しんでください。 ミュート設定は保存と同時に即座に反映されるため、ストレスフリーです。
Extension Basic Information
Name | はてなミュート |
ID | agomiblbpgcimbonnfmlcealkjlegbnf |
Official URL | https://chromewebstore.google.com/detail/%E3%81%AF%E3%81%A6%E3%81%AA%E3%83%9F%E3%83%A5%E3%83%BC%E3%83%88/agomiblbpgcimbonnfmlcealkjlegbnf |
Description | はてなブックマークの記事をキーワードやURLでミュート |
File Size | 300 KB |
Installation Count | 214 |
Current Version | 1.5.2 |
Last Updated | 2023-09-20 |
Publish Date | 2023-03-05 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Cside |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Cside/hatena-mute |
Help Page URL | https://github.com/Cside/hatena-mute/issues |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.5.2", "manifest_version": 3, "name": "\u306f\u3066\u306a\u30df\u30e5\u30fc\u30c8", "description": "\u306f\u3066\u306a\u30d6\u30c3\u30af\u30de\u30fc\u30af\u306e\u8a18\u4e8b\u3092\u30ad\u30fc\u30ef\u30fc\u30c9\u3084URL\u3067\u30df\u30e5\u30fc\u30c8", "action": { "default_icon": "images\/icon38.png", "default_popup": "popup.html" }, "options_page": "muted-entries.html", "default_locale": "ja", "content_scripts": [ { "js": [ "assets\/main.ts-loader.js" ], "matches": [ "https:\/\/b.hatena.ne.jp\/", "https:\/\/b.hatena.ne.jp\/?*", "https:\/\/b.hatena.ne.jp\/hotentry*", "https:\/\/b.hatena.ne.jp\/entrylist*" ], "run_at": "document_end", "css": [ "assets\/main.css" ] } ], "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "permissions": [ "storage", "unlimitedStorage", "tabs", "history", "alarms" ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "web_accessible_resources": [ { "matches": [ "https:\/\/b.hatena.ne.jp\/*" ], "resources": [ "images\/mute.svg", "images\/mute-hover.svg" ], "use_dynamic_url": false }, { "matches": [ "https:\/\/b.hatena.ne.jp\/*" ], "resources": [ "assets\/sentry.js", "assets\/_commonjsHelpers.js", "assets\/index.js", "assets\/storage.js", "assets\/utils.js", "assets\/main.ts.js" ], "use_dynamic_url": true } ] } |