RunMyCode Online

RunMyCode Online is a free and open-source tool to compile and run code online directly from Github, Gitlab and Bitbucket.

RunMyCode Onlineคืออะไร?

RunMyCode Online เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://runmycode.online และคุณลักษณะหลักของมันคือ "RunMyCode Online is a free and open-source tool to compile and run code online directly from Github, Gitlab and Bitbucket."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RunMyCode Online

ดาวน์โหลดไฟล์ส่วนขยาย RunMyCode Online ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        How to Use:
1. Install the extension.
2. On extension install, [RunMyCode Online](https://runmycode.online) will open in a new tab and prompt you to authenticate to get a key.
3. On authenticating with any the of providers, you will be redirected to dashboard page and extension will be auto-configured with your key.
4. Now you can go to any supported language code page on supported website and you will see a colored `Run` button added to left of usual action buttons (see screenshot). For example, you can test the extension with this Ruby code - https://github.com/shatgupt/runmycode-test/blob/master/ruby.rb
5. Clicking that `Run` button will open a runner where you can input any command line args and then press the big orange `Run` button to run the code on the page.
6. You can also edit the code using the web editor on Github or Gitlab and make it run through the same `Run` button as above.

Supported Languages: https://runmycode.online/faq.html#supported-lang

Supported Websites: https://runmycode.online/faq.html#supported-sites

Permissions requested by Extension:
Starting with v2, RMCO only asks permission for GitHub by default. All other websites are optional and can be allowed on demand. (Check your URL/Tool bar for a blue RMCO icon on supported sites)
1. Optional permission for the above supported websites to allow extension to run code directly from there
2. runmycode.online - To auto-configure the extension
3. api.runmycode.online - To run code from the extension
4. Tabs - For detecting url change and page loading complete for single page apps like Github, Bitbucket
5. Storage - To store API URL and Key

FAQ: https://runmycode.online/faq.html
Any more questions? Email to [email protected]

Source Code available at: https://github.com/shatgupt/runmycode-ext                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ RunMyCode Online RunMyCode Online
ID iidcnkpdmnopbbkdmneglbelcefgfohf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/runmycode-online/iidcnkpdmnopbbkdmneglbelcefgfohf
คำอธิบาย RunMyCode Online is a free and open-source tool to compile and run code online directly from Github, Gitlab and Bitbucket.
ขนาดไฟล์ 28.87 KB
จำนวนการติดตั้ง 1,805
เวอร์ชันปัจจุบัน 2.0.2
อัปเดตครั้งล่าสุด 2019-03-24
วันที่เผยแพร่ 2019-03-23
คะแนน 2.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://runmycode.online
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://runmycode.online/
URL หน้าช่วยเหลือ https://runmycode.online/faq.html
URL หน้านโยบายความเป็นส่วนตัว https://runmycode.online/faq.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RunMyCode Online",
    "short_name": "RunMyCode",
    "description": "RunMyCode Online is a free and open-source tool to compile and run code online directly from Github, Gitlab and Bitbucket.",
    "author": "Shatrughn Gupta",
    "homepage_url": "https:\/\/runmycode.online",
    "version": "2.0.2",
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "page_action": {
        "default_icon": "icon128.png",
        "default_title": "This site is not yet supported by RunMyCode."
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "common-utils.js",
                "platforms\/github.js",
                "runmycode.js"
            ],
            "css": [
                "runmycode-panel.css"
            ],
            "run-at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/runmycode.online\/dashboard.html*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "auto-configure.js"
            ],
            "run-at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/api.runmycode.online\/"
    ],
    "optional_permissions": [
        "https:\/\/gitlab.com\/",
        "https:\/\/bitbucket.org\/",
        "https:\/\/gobyexample.com\/",
        "*:\/\/xahlee.info\/",
        "*:\/\/www.learntosolveit.com\/",
        "https:\/\/www.geeksforgeeks.org\/",
        "https:\/\/www.tutorialspoint.com\/"
    ]
}