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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Github Bookmarks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" } } |