Github Tab Change
change tab-size in github
What is Github Tab Change?
Github Tab Change is a Chrome extension developed by shogo82148, and its main feature is "change tab-size in github".
Download Github Tab Change Extension CRX File
Download Github Tab Change extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
change tab-size in github.com
Extension Basic Information
Name | |
ID | ljioaacdegnnenakodladamafjodehnd |
Official URL | https://chrome.google.com/webstore/detail/github-tab-change/ljioaacdegnnenakodladamafjodehnd |
Description | change tab-size in github |
File Size | 11.12 KB |
Installation Count | 25 |
Current Version | 1.0 |
Last Updated | 2014-02-09 |
Publish Date | 2014-02-09 |
Rating | 4.00/5 Total 1 Ratings |
Developer | shogo82148 |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Tab Change", "version": "1.0", "description": "change tab-size in github", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "tabchange.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "icon-19.png", "default_title": "Github Tab Change", "default_popup": "popup.html" }, "web_accessible_resources": [ "tab-size-2.css", "tab-size-4.css", "tab-size-8.css" ] } |