はてなミュート

はてなブックマークの記事をキーワードやURLでミュート

はてなミュート란 무엇입니까?

はてなミュート은(는) Cside에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "はてなブックマークの記事をキーワードやURLでミュート"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

はてなミュート 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        機能
1. 指定したワードを含む記事をミュート
2. 指定した URL (の一部) を URL に含む記事をミュート
3. 指定した記事を単体で非表示にする
4. 訪問済みの記事を目立たなくする( on/off 選択可)
5. ブコメページを訪問済みの記事を目立たなくする( on/off 選択可)

見たくない記事をミュートして、快適なはてなブックマークを楽しんでください。
ミュート設定は保存と同時に即座に反映されるため、ストレスフリーです。                    

확장 프로그램 기본 정보

이름 はてなミュート はてなミュート
ID agomiblbpgcimbonnfmlcealkjlegbnf
공식 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
설명 はてなブックマークの記事をキーワードやURLでミュート
파일 크기 300 KB
설치 횟수 214
현재 버전 1.5.2
최근 업데이트 2023-09-20
출시 날짜 2023-03-05
평점 5.00/5 총 3 개의 평점
개발자 Cside
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Cside/hatena-mute
도움말 페이지 URL https://github.com/Cside/hatena-mute/issues
지원되는 언어 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
        }
    ]
}