GitHub Remarks
a chrome extension that can give github repos your own remarks
Hvad er GitHub Remarks?
GitHub Remarks er en Chrome-udvidelse udviklet af hanzichi, og dens hovedfunktion er "a chrome extension that can give github repos your own remarks".
Udvidelsesskærmbilleder
Download GitHub Remarks-udvidelses-CRX-fil
Download GitHub Remarks-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
a chrome extension that can give github repos your own remarks Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | pkepkgjchpahghcfdmdokoonapagblem |
| Officiel URL | https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem |
| Beskrivelse | a chrome extension that can give github repos your own remarks |
| Filstørrelse | 178 KB |
| Antal Installationer | 45 |
| Nuværende Version | 1.2.1 |
| Senest Opdateret | 2018-05-28 |
| Udgivelsesdato | 2018-05-27 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | hanzichi |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/hanzichi/github-remarks |
| Hjælpeside-URL | https://github.com/hanzichi/github-remarks/issues |
| Understøttede Sprog | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Remarks",
"manifest_version": 2,
"version": "1.2.1",
"description": "a chrome extension that can give github repos your own remarks",
"icons": {
"16": "icons\/icon_16.png",
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"browser_action": {
"default_title": "",
"default_icon": {
"19": "icons\/icon_19.png",
"38": "icons\/icon_38.png"
}
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*\/*"
],
"js": [
"content-scripts\/repoDetail.js"
],
"css": [],
"run_at": "document_end"
},
{
"matches": [
"*:\/\/github.com\/*"
],
"js": [
"lib\/jquery.min.js",
"lib\/list.min.js",
"content-scripts\/stars.js"
],
"css": [],
"run_at": "document_end"
}
]
} | |