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'"
} | |