TagMyCode
Official Chrome extension for TagMyCode, a platform where developers can save their code snippets.
Was ist TagMyCode?
TagMyCode ist eine Chrome-Erweiterung, die von http://tagmycode.com entwickelt wurde, und ihr Hauptmerkmal ist "Official Chrome extension for TagMyCode, a platform where developers can save their code snippets.".
Erweiterungsscreenshots
TagMyCode-Erweiterungs-CRX-Datei herunterladen
Laden Sie TagMyCode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cebihjbhblemknhkbmcliipjhggeleph |
| Offizielle URL | https://chrome.google.com/webstore/detail/tagmycode/cebihjbhblemknhkbmcliipjhggeleph |
| Beschreibung | Official Chrome extension for TagMyCode, a platform where developers can save their code snippets. |
| Dateigröße | 81.14 KB |
| Installationsanzahl | 237 |
| Aktuelle Version | 0.4 |
| Letztes Update | 2015-11-18 |
| Veröffentlichungsdatum | 2015-11-18 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | http://tagmycode.com |
| Zahlungsart | free |
| Erweiterungswebsite | http://tagmycode.com |
| Hilfeseite URL | http://tagmycode.com/about/faq |
| Unterstützte Sprachen | 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'"
} | |