mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
Merge branch 'logo' into develop
This commit is contained in:
commit
40fb431999
7 changed files with 15 additions and 20 deletions
|
|
@ -1,5 +1,9 @@
|
|||
# Gitako
|
||||
|
||||
<p align="center">
|
||||
<img width="256" src="src/assets/icons/Gitako.png" />
|
||||
</p>
|
||||
|
||||
Yet another extension for GitHub, available on both Chrome and Firefox. Inspired by [Octotree](https://github.com/buunguyen/octotree) & [GayHub](https://github.com/jawil/GayHub), thanks to them! Gitako is aimed at providing the best performance, better UX, more consistent UI and more essential features.
|
||||
|
||||
### Features
|
||||
|
|
@ -29,9 +33,11 @@ Any bug report or feature request discussions are welcomed, feel free to draft a
|
|||
|
||||
### About
|
||||
|
||||
#### Why named 'Gitako'?
|
||||
#### Name and logo meaning?
|
||||
|
||||
GitHub's totem is a cute octopus. And octopus in Japanese is `タコ`(tako).
|
||||
Then link them together:
|
||||
|
||||
git + tako -> gitako
|
||||
|
||||
The logo of Gitako is a tentacle of octopus, meaning Gitako works like a part of GitHub.
|
||||
|
|
|
|||
BIN
src/assets/icons/Gitako-128.png
Normal file
BIN
src/assets/icons/Gitako-128.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.1 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 7.7 KiB |
BIN
src/assets/icons/Gitako-256.png
Normal file
BIN
src/assets/icons/Gitako-256.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
BIN
src/assets/icons/Gitako-64.png
Normal file
BIN
src/assets/icons/Gitako-64.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.2 KiB |
BIN
src/assets/icons/Gitako.png
Normal file
BIN
src/assets/icons/Gitako.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
|
|
@ -5,28 +5,17 @@
|
|||
"description": "The missing part of GitHub.",
|
||||
"author": "EnixCoda",
|
||||
"icons": {
|
||||
"128": "icons/Gitako-128x128.png"
|
||||
"128": "icons/Gitako-128.png",
|
||||
"256": "icons/Gitako-256.png",
|
||||
"512": "icons/Gitako-512.png"
|
||||
},
|
||||
"homepage_url": "https://github.com/EnixCoda/Gitako",
|
||||
"permissions": [
|
||||
"storage",
|
||||
"*://*.github.com/*",
|
||||
"*://*.sentry.io/*"
|
||||
],
|
||||
"web_accessible_resources": [
|
||||
"icons/vscode/*",
|
||||
"content.css"
|
||||
],
|
||||
"permissions": ["storage", "*://*.github.com/*", "*://*.sentry.io/*"],
|
||||
"web_accessible_resources": ["icons/vscode/*", "content.css"],
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": [
|
||||
"https://github.com/*"
|
||||
],
|
||||
"js": [
|
||||
"firefox-shim.js",
|
||||
"browser-polyfill.js",
|
||||
"content.js"
|
||||
]
|
||||
"matches": ["https://github.com/*"],
|
||||
"js": ["firefox-shim.js", "browser-polyfill.js", "content.js"]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue