はてなブックマーク
はてなブックマークを Google Chrome でより便利に使える、はてなオフィシャルの拡張です
What is はてなブックマーク?
はてなブックマーク is a Chrome extension developed by https://b.hatena.ne.jp, and its main feature is "はてなブックマークを Google Chrome でより便利に使える、はてなオフィシャルの拡張です".
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
ブックマーク専用の新しい拡張を提供開始しました。ブックマーク機能については新しい拡張機能をご利用ください。 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
Extension Basic Information
Name | はてなブックマーク |
ID | dnlfpnhinnjdgmjfpccajboogcjocdla |
Official URL | 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 でより便利に使える、はてなオフィシャルの拡張です |
File Size | 230 KB |
Installation Count | 75,347 |
Current Version | 3.4.3 |
Last Updated | 2022-05-01 |
Publish Date | 2019-05-28 |
Rating | 3.89/5 Total 189 Ratings |
Developer | https://b.hatena.ne.jp |
[email protected] | |
Payment Type | free |
Extension Website | http://b.hatena.ne.jp/guide/chrome_extentions |
Help Page URL | http://www.hatena.ne.jp/faq/q?c=15 |
Privacy Policy Page URL | https://policies.hatena.ne.jp/privacypolicy-ja |
Supported Languages | 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'" } |