はてなミュート

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

Cos'è はてなミュート?

はてなミュート è un'estensione di Chrome sviluppata da Cside, e la sua funzione principale è "はてなブックマークの記事をキーワードやURLでミュート".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione はてなミュート

Scarica i file di estensione はてなミュート in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

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

Informazioni di Base sull'Estensione

Nome はてなミュート はてなミュート
ID agomiblbpgcimbonnfmlcealkjlegbnf
URL Ufficiale 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
Descrizione はてなブックマークの記事をキーワードやURLでミュート
Dimensione del File 300 KB
Conteggio Installazioni 214
Versione Corrente 1.5.2
Ultimo Aggiornamento 2023-09-20
Data di Pubblicazione 2023-03-05
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Cside
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Cside/hatena-mute
URL della Pagina di Aiuto https://github.com/Cside/hatena-mute/issues
Lingue Supportate 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
        }
    ]
}