TagMyCode

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

Qu'est-ce que TagMyCode ?

TagMyCode est une extension Chrome développée par http://tagmycode.com, et sa fonction principale est "Official Chrome extension for TagMyCode, a platform where developers can save their code snippets.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension TagMyCode

Téléchargez les fichiers d'extension TagMyCode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom TagMyCode TagMyCode
ID cebihjbhblemknhkbmcliipjhggeleph
URL Officiel https://chrome.google.com/webstore/detail/tagmycode/cebihjbhblemknhkbmcliipjhggeleph
Description Official Chrome extension for TagMyCode, a platform where developers can save their code snippets.
Taille du Fichier 81.14 KB
Nombre d'Installations 237
Version Actuelle 0.4
Dernière Mise à Jour 2015-11-18
Date de Publication 2015-11-18
Évaluation 5.00/5 Total 3 Évaluations
Développeur http://tagmycode.com
Type de Paiement free
Site Web de l'Extension http://tagmycode.com
URL de la Page d'Aide http://tagmycode.com/about/faq
Langues Prises en Charge 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'"
}