Github Wiki LiveEdit
Adding live editing features into Github wiki.
Cos'è Github Wiki LiveEdit?
Github Wiki LiveEdit è un'estensione di Chrome sviluppata da Yuya Hashimoto, e la sua funzione principale è "Adding live editing features into Github wiki.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github Wiki LiveEdit
Scarica i file di estensione Github Wiki LiveEdit in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Adding live editing features into Github wiki. Informazioni di Base sull'Estensione
| Nome | |
| ID | hlldlinpdlhfhbdihggmipnjgbaibfnc |
| URL Ufficiale | https://chromewebstore.google.com/detail/github-wiki-liveedit/hlldlinpdlhfhbdihggmipnjgbaibfnc |
| Descrizione | Adding live editing features into Github wiki. |
| Dimensione del File | 12.37 KB |
| Conteggio Installazioni | 78 |
| Versione Corrente | 1.0.3 |
| Ultimo Aggiornamento | 2016-05-03 |
| Data di Pubblicazione | 2016-05-03 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | Yuya Hashimoto |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/yuya/github-wiki-live-edit |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github Wiki LiveEdit",
"description": "Adding live editing features into Github wiki.",
"version": "1.0.3",
"background": {
"scripts": [
"js\/background.js"
]
},
"page_action": {
"default_icon": "img\/icon-19.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*\/wiki\/*\/_edit",
"https:\/\/github.com\/*\/wiki\/_new"
],
"css": [
"css\/style.css"
],
"js": [
"js\/content_script.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"icons": {
"16": "img\/icon-16.png",
"19": "img\/icon-19.png",
"38": "img\/[email protected]",
"32": "img\/icon-32.png",
"48": "img\/icon-48.png",
"128": "img\/icon-128.png"
},
"web_accessible_resources": [
"img\/*.png",
"img\/*.gif"
],
"manifest_version": 2
} | |