Extract to React
Chrome/Chromium extension that allows easy HTML to React conversion.
Extract to React क्या है?
Extract to React Jess Telford द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome/Chromium extension that allows easy HTML to React conversion."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Extract to React एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Extract all the HTML & CSS of any portion of any website directly into a ready-to-go React Component! ---- # Usage - Quick start: Inspect an element on the page > "Extract To React" tab > Extract the code to CodePen or JSFiddle. - Advanced usage: It is possible to split a monolithic component up into multiple nested components. Find the elements you wish to become their own component in the "Elements" tab. Add an attribute called `data-component`. Set the value of `data-component` to be the extracted name of the component:Hello, world!
Will result in 3 components being extracted: `Heading`, `Nav`, and `ListItem` ---- # Bugs and Features If you find a bug or have a feature request, please create an issue on GitHub: https://github.com/jesstelford/extract-to-react/issues ---- # Attribution This project is based on excellent open source software: * SnappySnippet: Chrome/Chromium extension that allows easy CSS+HTML extraction of specific DOM element. Created snippet can be then exported to CodePen, jsFiddle or JS Bin with one click. (https://github.com/kdzwinel/SnappySnippet/issues) * html-to-react-components: Extract annotated portions of HTML into React components as separate modules. (https://roman01la.github.io/html-to-react-components/)
एक्सटेंशन की मूल जानकारी
नाम | Extract to React |
ID | fbdmadiknkkdfcgjdbmddklighibfomm |
आधिकारिक URL | https://chromewebstore.google.com/detail/extract-to-react/fbdmadiknkkdfcgjdbmddklighibfomm |
विवरण | Chrome/Chromium extension that allows easy HTML to React conversion. |
फ़ाइल का आकार | 489 KB |
स्थापना संख्या | 2,509 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2019-01-17 |
प्रकाशन तिथि | 2019-01-16 |
रेटिंग | 1.71/5 कुल 7 रेटिंग्स |
डेवलपर | Jess Telford |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/jesstelford/extract-to-react |
सहायता पृष्ठ URL | https://github.com/jesstelford/extract-to-react/issues |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Extract to React", "description": "Chrome\/Chromium extension that allows easy HTML to React conversion.", "version": "1.0.2", "manifest_version": 2, "minimum_chrome_version": "39.0", "icons": { "16": "gfx\/icon_16.png", "48": "gfx\/icon_48.png", "128": "gfx\/icon_128.png" }, "devtools_page": "devtools.html", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/apis.google.com https:\/\/platform.twitter.com https:\/\/www.facebook.com; object-src 'self'" } |