Normal Tab Size
Set the default tab-size CSS property to 2 in every page (especially in GitHub)
Vad är Normal Tab Size?
Normal Tab Size är en Chrome-tillägg utvecklad av fatalis.erratum, och dess huvudfunktion är "Set the default tab-size CSS property to 2 in every page (especially in GitHub)".
Ladda ner Normal Tab Size-förlängningens CRX-fil
Ladda ner Normal Tab Size-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
Adds a user stylesheet that applies a `tab-size: 2` rule to the root element in every page. Grundläggande Information om Tillägg
| Namn | |
| ID | kjjblpbmpgkbfnonlanolpcmlolafamn |
| Officiell webbadress | https://chrome.google.com/webstore/detail/normal-tab-size/kjjblpbmpgkbfnonlanolpcmlolafamn |
| Beskrivning | Set the default tab-size CSS property to 2 in every page (especially in GitHub) |
| Filstorlek | 39.03 KB |
| Antal Installationer | 19 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2017-05-14 |
| Publiceringsdatum | 2017-05-14 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | fatalis.erratum |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/slikts/normaltabs |
| Hjälpsida URL | https://github.com/slikts/normaltabs/issues |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Normal Tab Size",
"version": "1.0.1",
"manifest_version": 2,
"description": "Set the default tab-size CSS property to 2 in every page (especially in GitHub)",
"homepage_url": "https:\/\/github.com\/slikts\/normaltabs",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"all_frames": true,
"css": [
"src\/inject.css"
]
},
{
"matches": [
"*:\/\/*.github.com\/*"
],
"all_frames": true,
"css": [
"src\/github.css"
]
}
]
} | |