TagMyCode

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

TagMyCode란 무엇입니까?

TagMyCode은(는) http://tagmycode.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Official Chrome extension for TagMyCode, a platform where developers can save their code snippets."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

TagMyCode 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
}