Color Diff for Gmail™
This extension colors source code's diff inline of an email.
Vad är Color Diff for Gmail™?
Color Diff for Gmail™ är en Chrome-tillägg utvecklad av Mikhail Nasyrov, och dess huvudfunktion är "This extension colors source code's diff inline of an email.".
Tilläggsskärmbilder
Ladda ner Color Diff for Gmail™-förlängningens CRX-fil
Ladda ner Color Diff for Gmail™-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Source code: https://github.com/mnasyrov/gcolordiff Grundläggande Information om Tillägg
| Namn | |
| ID | ijpjalhclnijdndandfhhdgiiojhckde |
| Officiell webbadress | https://chrome.google.com/webstore/detail/color-diff-for-gmail/ijpjalhclnijdndandfhhdgiiojhckde |
| Beskrivning | This extension colors source code's diff inline of an email. |
| Filstorlek | 6.33 KB |
| Antal Installationer | 107 |
| Aktuell Version | 0.1.6 |
| Senast Uppdaterad | 2018-05-25 |
| Publiceringsdatum | 2018-05-25 |
| Betyg | 4.88/5 Totalt 8 Betyg |
| Utvecklare | Mikhail Nasyrov |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/mnasyrov/gcolordiff |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Color Diff for Gmail\u2122",
"version": "0.1.6",
"manifest_version": 2,
"description": "This extension colors source code's diff inline of an email.",
"permissions": [
"https:\/\/mail.google.com\/*"
],
"icons": {
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"gcolordiff.js"
],
"css": [
"gcolordiff.css"
],
"run-at": "document_end"
}
]
} | |