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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Github Stars Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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