TagMyCode

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

TagMyCode là gì?

TagMyCode là một tiện ích mở rộng Chrome được phát triển bởi http://tagmycode.com, và tính năng chính của nó là "Official Chrome extension for TagMyCode, a platform where developers can save their code snippets.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng TagMyCode

Tải xuống các tệp mở rộng TagMyCode dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TagMyCode TagMyCode
ID cebihjbhblemknhkbmcliipjhggeleph
URL Chính Thức https://chrome.google.com/webstore/detail/tagmycode/cebihjbhblemknhkbmcliipjhggeleph
Mô tả Official Chrome extension for TagMyCode, a platform where developers can save their code snippets.
Kích Thước Tệp 81.14 KB
Số Lần Cài Đặt 237
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2015-11-18
Ngày Phát Hành 2015-11-18
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển http://tagmycode.com
Loại Thanh Toán free
Trang Web Mở Rộng http://tagmycode.com
URL Trang Trợ Giúp http://tagmycode.com/about/faq
Ngôn Ngữ Được Hỗ Trợ 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'"
}