Github Bookmarks
A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.
Github Bookmarksとは何ですか?
Github Bookmarksはandrew-196によって開発されたChromeの拡張機能で、その主な機能は「A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.」です。
拡張機能のスクリーンショット
Github Bookmarks拡張機能のCRXファイルをダウンロード
Github Bookmarks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The Github Bookmark extension for keeping your favourite snippets of code to read later, or study on! This extension features descriptions, keeping track of entire files and specific lines, and soon the feature on in-depth markdown notes.
拡張機能の基本情報
名前 | Github Bookmarks |
ID | ebokekkpmchijniaphcbknendmdafglf |
公式URL | https://chromewebstore.google.com/detail/github-bookmarks/ebokekkpmchijniaphcbknendmdafglf |
説明 | A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more. |
ファイルサイズ | 54.28 KB |
インストール数 | 105 |
現在のバージョン | 0.12.1 |
最終更新日 | 2021-11-15 |
公開日 | 2020-06-30 |
評価 | 4.33/5 合計 3 レビュー |
開発者 | andrew-196 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/MountainDrew/github-bookmark-extension |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Bookmarks", "short_name": "githubbookmarks", "version": "0.12.1", "description": "A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.", "homepage_url": "https:\/\/github.com\/MountainDrew\/github-bookmark-extension", "permissions": [ "history" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "dist\/bookmark-add.js", "dist\/bookmark-header-link.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/github.com\/_bookmarks_", "https:\/\/github.com\/_bookmarks_\/" ], "js": [ "dist\/bookmark-list.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/github.com\/_bookmark_\/*" ], "js": [ "dist\/bookmark-show.js" ], "run_at": "document_start" } ], "manifest_version": 2, "icons": { "16": "images\/icons\/16.png", "48": "images\/icons\/48.png", "128": "images\/icons\/128.png" }, "browser_action": { "default_icon": "images\/icons\/48.png", "default_popup": "popup.html" } } |