OME

OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.

OME क्या है?

OME http://chaopeng.me द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.                    

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

नाम OME OME
ID ddmghiaepldohkneojcfejekplkakgjg
आधिकारिक URL https://chrome.google.com/webstore/detail/ome/ddmghiaepldohkneojcfejekplkakgjg
विवरण OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.
फ़ाइल का आकार 6.92 KB
स्थापना संख्या 97
वर्तमान संस्करण 0.6.0
अंतिम अपडेट 2017-05-13
प्रकाशन तिथि 2017-05-13
रेटिंग 3.00/5 कुल 1 रेटिंग्स
डेवलपर http://chaopeng.me
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://chromium.googlesource.com/chromium/src.git/+/master/tools/chrome_extensions/open_my_editor/README.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OME",
    "description": "OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.",
    "version": "0.6.0",
    "permissions": [
        "contextMenus",
        "tabs",
        "activeTab",
        "http:\/\/127.0.0.1:8989\/*"
    ],
    "icons": {
        "16": "icon-16.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chromium-review.googlesource.com\/*"
            ],
            "js": [
                "gr-content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/cs.chromium.org\/chromium\/src\/*"
            ],
            "js": [
                "cs-content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/codereview.chromium.org\/*"
            ],
            "js": [
                "cr-content.js"
            ]
        }
    ],
    "manifest_version": 2
}