はてなブックマーク

はてなブックマークを Google Chrome でより便利に使える、はてなオフィシャルの拡張です

Qu'est-ce que はてなブックマーク ?

はてなブックマーク est une extension Chrome développée par https://b.hatena.ne.jp, et sa fonction principale est "はてなブックマークを Google Chrome でより便利に使える、はてなオフィシャルの拡張です".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension はてなブックマーク

Téléchargez les fichiers d'extension はてなブックマーク au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        ブックマーク専用の新しい拡張を提供開始しました。ブックマーク機能については新しい拡張機能をご利用ください。
https://chrome.google.com/webstore/detail/%E3%81%AF%E3%81%A6%E3%81%AA%E3%83%96%E3%83%83%E3%82%AF%E3%83%9E%E3%83%BC%E3%82%AF-%E3%83%96%E3%83%83%E3%82%AF%E3%83%9E%E3%83%BC%E3%82%AF%E6%A9%9F%E8%83%BD/baniobjofkeeahdkdnpanannchdgblni


日本最大規模のソーシャルブックマーク、はてなブックマーク ( http://b.hatena.ne.jp/ ) を
Google Chrome でより便利に使える、はてなオフィシャルの拡張です。

はてなブックマーク Google Chrome 拡張では、以下の機能をご利用いただけます。

- 見ているページの評判(ブックマーク数)を、ツールバー上に表示
- コメントビューワーで、閲覧ページのはてなブックマークコメントを閲覧
- 素早くはてなブックマークに閲覧ページを追加
- 自分のブックマークからの高速な検索
- Google の検索結果等、対応ページのリンクにブックマークのユーザー数を表示
(ツールバーのはてなブックマークボタンを右クリックして「オプション」から各機能をご利用になられるか設定できます。)

詳しい機能紹介については、以下のガイドページをご覧ください。

- http://b.hatena.ne.jp/guide/chrome_extentions

ソースコードは以下で公開しています。
- http://github.com/hatena/hatena-bookmark-googlechrome-extension

また、このページのレビュー欄にはレビューや感想などをご記入ください。不具合の報告などについては、サポート窓口へお願いします。

- http://www.hatena.ne.jp/faq/q?c=15                    

Informations de Base sur l'Extension

Nom はてなブックマーク はてなブックマーク
ID dnlfpnhinnjdgmjfpccajboogcjocdla
URL Officiel https://chromewebstore.google.com/detail/%E3%81%AF%E3%81%A6%E3%81%AA%E3%83%96%E3%83%83%E3%82%AF%E3%83%9E%E3%83%BC%E3%82%AF/dnlfpnhinnjdgmjfpccajboogcjocdla
Description はてなブックマークを Google Chrome でより便利に使える、はてなオフィシャルの拡張です
Taille du Fichier 230 KB
Nombre d'Installations 75,347
Version Actuelle 3.4.3
Dernière Mise à Jour 2022-05-01
Date de Publication 2019-05-28
Évaluation 3.89/5 Total 189 Évaluations
Développeur https://b.hatena.ne.jp
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://b.hatena.ne.jp/guide/chrome_extentions
URL de la Page d'Aide http://www.hatena.ne.jp/faq/q?c=15
URL de la Page de Politique de Confidentialité https://policies.hatena.ne.jp/privacypolicy-ja
Langues Prises en Charge en-US,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "ja",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "3.4.3",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "unlimited_storage",
        "contextMenus"
    ],
    "icons": {
        "16": "images\/favicon16.png",
        "32": "images\/favicon32.png",
        "48": "images\/favicon48.png",
        "128": "images\/favicon128.png"
    },
    "browser_action": {
        "default_icon": "images\/chrome-b-plus.png",
        "default_title": "Hatena Bookmark",
        "default_popup": "background\/popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": false,
            "js": [
                "content\/login_check.js"
            ],
            "matches": [
                "http:\/\/www.hatena.ne.jp\/login",
                "https:\/\/www.hatena.ne.jp\/login",
                "http:\/\/www.hatena.ne.jp\/login*",
                "https:\/\/www.hatena.ne.jp\/login*"
            ]
        },
        {
            "run_at": "document_end",
            "all_frames": false,
            "js": [
                "content\/logout.js"
            ],
            "matches": [
                "http:\/\/www.hatena.ne.jp\/logout",
                "https:\/\/www.hatena.ne.jp\/logout",
                "http:\/\/www.hatena.ne.jp\/logout*",
                "https:\/\/www.hatena.ne.jp\/logout*"
            ]
        },
        {
            "run_at": "document_end",
            "all_frames": false,
            "js": [
                "content\/widget_embedder.js"
            ],
            "css": [
                "content\/widget_embedder.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "options_page": "background\/config.html",
    "background": {
        "page": "background\/background.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "MacCtrl+Shift+B"
            }
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}