Github Stars Manager

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

Τι είναι το Github Stars Manager;

Το Github Stars Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Gabriel Godoy, και η κύρια λειτουργία του είναι "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Github Stars Manager

Λήψη αρχείων επέκτασης Github Stars Manager σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Github Stars Manager Github Stars Manager
ID epooeampfghdkampjnocabjniefmnkab
Επίσημο URL https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab
Περιγραφή This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
Μέγεθος Αρχείου 149 KB
Αριθμός Εγκαταστάσεων 245
Τρέχουσα Έκδοση 1.9
Τελευταία Ενημέρωση 2018-05-23
Ημερομηνία Δημοσίευσης 2018-05-23
Αξιολόγηση 3.83/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής Gabriel Godoy
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/gabrielgodoy/github-stars-manager
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/gabrielgodoy/github-stars-manager/issues
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}