Run In Playground

Run any JavaScript code on a page in a code playground of your choice

Run In Playground क्या है?

Run In Playground https://fraserhamilton.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Run any JavaScript code on a page in a code playground of your choice"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Run In Playground एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Often when reading blog posts It can be useful to experiment with the code alongside the author, code playgrounds are great for this but the copy and pasting can quickly become tedious. This extension attempts to address that by adding a "Open In Playground" option to the context menu to open the code in the playground of your choice. You can also click on the extension icon to launch an empty code playground. Currently only CodePen and JSFiddle are supported with more playgrounds coming soon.                    

एक्सटेंशन की मूल जानकारी

नाम Run In Playground Run In Playground
ID gaakbjifoeokcmhbdpgaflahiphfelfd
आधिकारिक URL https://chromewebstore.google.com/detail/run-in-playground/gaakbjifoeokcmhbdpgaflahiphfelfd
विवरण Run any JavaScript code on a page in a code playground of your choice
फ़ाइल का आकार 64.48 KB
स्थापना संख्या 71
वर्तमान संस्करण 1.1
अंतिम अपडेट 2020-08-22
प्रकाशन तिथि 2020-08-17
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://fraserhamilton.dev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Run In Playground",
    "version": "1.1",
    "description": "Run any JavaScript code on a page in a code playground of your choice",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "https:\/\/codepen.io\/pen\/define",
        "https:\/\/jsfiddle.net\/api\/post\/library\/pure\/",
        "contextMenus",
        "storage"
    ],
    "background": {
        "persistent": true,
        "page": "background.html"
    },
    "browser_action": {
        "name": "Run In Playground"
    },
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png"
    }
}