Github Stars Manager
This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
Apa itu Github Stars Manager?
Github Stars Manager adalah ekstensi Chrome yang dikembangkan oleh Gabriel Godoy, dan fitur utamanya adalah "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Github Stars Manager
Unduh file ekstensi Github Stars Manager dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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. Informasi Dasar Ekstensi
| Nama | |
| ID | epooeampfghdkampjnocabjniefmnkab |
| URL Resmi | https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab |
| Deskripsi | This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created. |
| Ukuran File | 149 KB |
| Jumlah Instalasi | 245 |
| Versi Saat Ini | 1.9 |
| Terakhir Diperbarui | 2018-05-23 |
| Tanggal Publikasi | 2018-05-23 |
| Penilaian | 3.83/5 Total 12 Penilaian |
| Pengembang | Gabriel Godoy |
| [email protected] | |
| Tipe Pembayaran | free |
| Situs Ekstensi | https://github.com/gabrielgodoy/github-stars-manager |
| URL Halaman Bantuan | https://github.com/gabrielgodoy/github-stars-manager/issues |
| Bahasa yang Didukung | 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"
]
}
]
} | |