Github Stars Manager

This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.

Qu'est-ce que Github Stars Manager ?

Github Stars Manager est une extension Chrome développée par Gabriel Godoy, et sa fonction principale est "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Github Stars Manager

Téléchargez les fichiers d'extension Github Stars Manager 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 extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.

It uses storage.sync, so the tags you create will be synced to all your computers, and visible on Github.                    

Informations de Base sur l'Extension

Nom Github Stars Manager Github Stars Manager
ID epooeampfghdkampjnocabjniefmnkab
URL Officiel https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab
Description This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
Taille du Fichier 149 KB
Nombre d'Installations 245
Version Actuelle 1.9
Dernière Mise à Jour 2018-05-23
Date de Publication 2018-05-23
Évaluation 3.83/5 Total 12 Évaluations
Développeur Gabriel Godoy
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/gabrielgodoy/github-stars-manager
URL de la Page d'Aide https://github.com/gabrielgodoy/github-stars-manager/issues
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Stars Manager",
    "description": "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.",
    "version": "1.9",
    "browser_action": {
        "default_icon": "src\/assets\/images\/icons\/icon.png"
    },
    "icons": {
        "16": "src\/assets\/images\/icons\/icon16.png",
        "48": "src\/assets\/images\/icons\/icon48.png",
        "128": "src\/assets\/images\/icons\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        "bookmarks",
        "tabs",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "dist\/content_script.js"
            ],
            "css": [
                "dist\/main.css"
            ]
        }
    ]
}