Starmark

Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…

Vad är Starmark?

Starmark är en Chrome-tillägg utvecklad av ryansworks, och dess huvudfunktion är "Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…".

Tilläggsskärmbilder

screenshot

Ladda ner Starmark-förlängningens CRX-fil

Ladda ner Starmark-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a bookmark will be added into the "github-stars" folder in your main Bookmarks.                    

Grundläggande Information om Tillägg

Namn Starmark Starmark
ID bkobkbkmhkmlmdolbhnmmmhnccdgaebk
Officiell webbadress https://chromewebstore.google.com/detail/starmark/bkobkbkmhkmlmdolbhnmmmhnccdgaebk
Beskrivning Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…
Filstorlek 76.11 KB
Antal Installationer 61
Aktuell Version 0.0.1
Senast Uppdaterad 2019-03-08
Publiceringsdatum 2019-03-08
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare ryansworks
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Starmark",
    "version": "0.0.1",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-16.png",
        "default_title": "Starmark"
    },
    "icons": {
        "128": "icon-128.png",
        "16": "icon-16.png",
        "48": "icon-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "lodash.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "tabs",
        "bookmarks"
    ]
}