Unlock Field Limits
Enabled all field, Remove 'Max Length' of field
Что такое Unlock Field Limits?
Unlock Field Limits - это расширение Chrome, разработанное Mario Gosparini, и его основная функция - "Enabled all field, Remove 'Max Length' of field".
Снимки экрана расширения
Скачать файл CRX расширения Unlock Field Limits
Скачайте файлы расширений Unlock Field Limits в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This plugin remove every restriction on fields automatically (MaxLength, Disabled, ...). The plugin will change the background & color of fields modified (to inform user)
Основная информация о расширении
Название | |
ID | mefkndenjaobjhlpnknaffnbgakobclb |
Официальный URL | https://chrome.google.com/webstore/detail/unlock-field-limits/mefkndenjaobjhlpnknaffnbgakobclb |
Описание | Enabled all field, Remove 'Max Length' of field |
Размер файла | 6.03 KB |
Количество установок | 75 |
Текущая Версия | 2.8 |
Последнее Обновление | 2015-09-29 |
Дата публикации | 2015-09-29 |
Разработчик | Mario Gosparini |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Mario Gosparini", "content_security_policy": "script-src 'self'; object-src 'self'", "description": "Enabled all field, Remove 'Max Length' of field", "browser_action": { "default_icon": { "128": "icon.png", "16": "icon.png", "48": "icon48.png", "32": "icon.png", "64": "icon64.png", "19": "icon.png" } }, "content_scripts": [ { "js": [ "hack.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "manifest_version": 2, "name": "Unlock Field Limits", "permissions": [ "cookies", "tabs" ], "version": "2.8" } |