TagMyCode

Official Chrome extension for TagMyCode, a platform where developers can save their code snippets.

TagMyCode क्या है?

TagMyCode http://tagmycode.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Official Chrome extension for TagMyCode, a platform where developers can save their code snippets."।

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

screenshot
screenshot

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

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

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

                        This is a platform for developers.
TagMyCode helps you to save and manage your code snippets and reuse them when necessary.

Features:
- Store and tag your snippets - Save and organize your code snippets with appropriate tags

- Search for public snippets - You can search all public snippet saved by other users

- Reuse your snippets - Copy and paste your snippets in your projects and save precious time

- Share your snippets - You can collaborate with other users by sharing public or private snippets

- Social - You can interact with other developers, you can follow their updates, comment and vote their public snippets                    

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

नाम TagMyCode TagMyCode
ID cebihjbhblemknhkbmcliipjhggeleph
आधिकारिक URL https://chrome.google.com/webstore/detail/tagmycode/cebihjbhblemknhkbmcliipjhggeleph
विवरण Official Chrome extension for TagMyCode, a platform where developers can save their code snippets.
फ़ाइल का आकार 81.14 KB
स्थापना संख्या 237
वर्तमान संस्करण 0.4
अंतिम अपडेट 2015-11-18
प्रकाशन तिथि 2015-11-18
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर http://tagmycode.com
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://tagmycode.com
सहायता पृष्ठ URL http://tagmycode.com/about/faq
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TagMyCode",
    "version": "0.4",
    "description": "Official Chrome extension for TagMyCode, a platform where developers can save their code snippets.",
    "icons": {
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/jquery.min.js",
            "client.js",
            "app.js",
            "util.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [],
            "js": [
                "selectText.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "chrome_ex_oauth.html",
        "redirect.html"
    ],
    "browser_action": {
        "default_title": "TagMyCode",
        "default_icon": "img\/icon-16-off.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*.tagmycode.com\/*",
        "https:\/\/*.tagmycode.com\/*",
        "https:\/\/tagmycode.com\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/api.tagmycode.com https:\/\/tagmycode.com; object-src 'self'"
}