Advent of Code to Markdown
Converts a given Advent of Code page to a GitHub-compatible Markdown file.
Advent of Code to Markdown क्या है?
Advent of Code to Markdown Kyle Farnung द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Converts a given Advent of Code page to a GitHub-compatible Markdown file."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Advent of Code to Markdown एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Easily generate markdown from an Advent of Code problem description. Simply activate the extension to generate markdown from the current page and save it to a file.
एक्सटेंशन की मूल जानकारी
नाम | Advent of Code to Markdown |
ID | bhhioamnpnhgcakbdnkgmnjjbjolfjmj |
आधिकारिक URL | https://chromewebstore.google.com/detail/advent-of-code-to-markdow/bhhioamnpnhgcakbdnkgmnjjbjolfjmj |
विवरण | Converts a given Advent of Code page to a GitHub-compatible Markdown file. |
फ़ाइल का आकार | 28.12 KB |
स्थापना संख्या | 190 |
वर्तमान संस्करण | 1.3.2 |
अंतिम अपडेट | 2022-12-04 |
प्रकाशन तिथि | 2020-12-02 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | Kyle Farnung |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/kfarnung/aoc-to-markdown |
सहायता पृष्ठ URL | https://github.com/kfarnung/aoc-to-markdown/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Advent of Code to Markdown", "version": "1.3.2", "description": "Converts a given Advent of Code page to a GitHub-compatible Markdown file.", "icons": { "16": "icons\/aoc-to-markdown-16.png", "32": "icons\/aoc-to-markdown-32.png", "48": "icons\/aoc-to-markdown-48.png", "128": "icons\/aoc-to-markdown-128.png" }, "background": { "scripts": [ "background_scripts\/index.js" ] }, "content_scripts": [ { "js": [ "\/content_scripts\/index.js" ], "matches": [ "*:\/\/adventofcode.com\/*\/day\/*" ] } ], "page_action": { "default_icon": { "16": "icons\/aoc-to-markdown-16.png", "32": "icons\/aoc-to-markdown-32.png", "48": "icons\/aoc-to-markdown-48.png", "128": "icons\/aoc-to-markdown-128.png" }, "default_title": "Advent of Code to Markdown" }, "permissions": [ "downloads" ] } |