Starmark

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

ما هو Starmark؟

Starmark هو إضافة Chrome تم تطويرها بواسطة ryansworks، والميزة الرئيسية لها هي "Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Starmark

قم بتنزيل ملفات الامتداد Starmark بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Starmark Starmark
ID bkobkbkmhkmlmdolbhnmmmhnccdgaebk
عنوان URL الرسمي https://chromewebstore.google.com/detail/starmark/bkobkbkmhkmlmdolbhnmmmhnccdgaebk
الوصف Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…
حجم الملف 76.11 KB
عدد التثبيتات 61
النسخة الحالية 0.0.1
آخر تحديث 2019-03-08
تاريخ النشر 2019-03-08
تقييم 5.00/5 مجموع تقييمات 2
المطور ryansworks
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
    ]
}