Github tabsize switch
Customize tabsize (2/4/8) on Github.
Hvad er Github tabsize switch?
Github tabsize switch er en Chrome-udvidelse udviklet af arzyu, og dens hovedfunktion er "Customize tabsize (2/4/8) on Github.".
Udvidelsesskærmbilleder
Download Github tabsize switch-udvidelses-CRX-fil
Download Github tabsize switch-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
# Change logs - v0.3.0: support for Github enterprise # Source code: https://github.com/arzyu/github-tabsize-switch
Grundlæggende oplysninger om udvidelsen
Navn | Github tabsize switch |
ID | mmlfimabppjddbmemjegaojhcibkjmjn |
Officiel URL | https://chromewebstore.google.com/detail/github-tabsize-switch/mmlfimabppjddbmemjegaojhcibkjmjn |
Beskrivelse | Customize tabsize (2/4/8) on Github. |
Filstørrelse | 15.3 KB |
Antal Installationer | 40 |
Nuværende Version | 0.3.1 |
Senest Opdateret | 2017-06-06 |
Udgivelsesdato | 2017-06-06 |
Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
Udvikler | arzyu |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/arzyu/github-tabsize-switch |
Hjælpeside-URL | https://github.com/arzyu/github-tabsize-switch/issues |
Understøttede Sprog | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github tabsize switch", "version": "0.3.1", "description": "Customize tabsize (2\/4\/8) on Github.", "icons": { "128": "assets\/tabsize-8.png" }, "browser_action": { "default_title": "Click to switch tabsize on Github." }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "include_globs": [ "https:\/\/github.*", "https:\/\/*.github.*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "tabs", "activeTab", "storage" ] } |