Inspect and view changes in Indent lines in textarea with Tab source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"version": "2.1",
"name": "Indent lines in textarea with Tab",
"description": "When you select several lines of text in textarea and press Tab, these lines will be indented. With Shift+Tab these lines will be unindented. Configure the number of spaces in the options page.",
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"index.js"
]
}
],
"options_ui": {
"page": "options.html"
},
"permissions": [
"storage"
],
"homepage_url": "https://gitlab.com/arty.name/firefox-extension-textarea-indent-tab",
"browser_specific_settings": {
"gecko": {
"id": "{aef30b0f-bedb-446f-ada1-409a3472c538}"
}
}
}