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.”。
扩展截图
下载TagMyCode扩展crx文件
下载TagMyCode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
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'" } |