123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- name: Auto SEO
- version: 1.4.0
- description: Grav AutoSEO is a plugin for Grav with which you can fill automatically the description and keywords metadata of a page using its content. It also adds Facebook Open Graph metadata and Twitter Cards Meta Tags.
- icon: magic
- author:
- name: Nuno Costa
- email: info@codehaha.com
- url: http://www.codehaha.com
- homepage: https://github.com/francodacosta/grav-plugin-autoseo
- keywords: plugin, seo, metadata extraction, auto fill
- bugs: https://github.com/francodacosta/grav-plugin-autoseo/issues
- docs: https://github.com/francodacosta/grav-plugin-autoseo/blob/master/README.md
- license: MIT
- dependencies:
- - { name: admin, version: '>=1.5.0' }
- form:
- validation: strict
- fields:
- global:
- type: section
- title: PLUGINS.AUTO_SEO.GLOBAL_CONFIG
- underline: 1
- fields:
- enabled:
- type: toggle
- label: PLUGINS.AUTO_SEO.PLUGIN_STATUS
- highlight: 1
- default: 0
- options:
- 1: PLUGIN_ADMIN.ENABLED
- 0: PLUGIN_ADMIN.DISABLED
- validate:
- type: bool
- metadata:
- type: section
- title: PLUGINS.AUTO_SEO.DEFAULT_CONFIG
- underline: 1
- fields:
- description.enabled:
- type: toggle
- label: PLUGINS.AUTO_SEO.DESCRIPTION.ENABLED_LABEL
- help: PLUGINS.AUTO_SEO.DESCRIPTION.ENABLED_HELP
- highlight: 1
- default: 0
- options:
- 1: PLUGIN_ADMIN.ENABLED
- 0: PLUGIN_ADMIN.DISABLED
- validate:
- type: bool
- description.length:
- type: text
- size: x-small
- label: PLUGINS.AUTO_SEO.DESCRIPTION.LENGTH_LABEL
- help: PLUGINS.AUTO_SEO.DESCRIPTION.LENGTH_HELP
- default: 30
- validate:
- type: number
- min: 2
- max: 50
- keywords.enabled:
- type: toggle
- label: PLUGINS.AUTO_SEO.KEYWORDS.ENABLED_LABEL
- help: PLUGINS.AUTO_SEO.KEYWORDS.ENABLED_HELP
- highlight: 1
- default: 0
- options:
- 1: PLUGIN_ADMIN.ENABLED
- 0: PLUGIN_ADMIN.DISABLED
- validate:
- type: bool
- keywords.length:
- type: text
- size: x-small
- label: PLUGINS.AUTO_SEO.KEYWORDS.LENGTH_LABEL
- help: PLUGINS.AUTO_SEO.KEYWORDS.LENGTH_HELP
- default: 20
- validate:
- type: number
- min: 2
- max: 30
- facebook.enabled:
- type: toggle
- label: PLUGINS.AUTO_SEO.FACEBOOK.ENABLED_LABEL
- help: PLUGINS.AUTO_SEO.FACEBOOK.ENABLED_HELP
- highlight: 1
- default: 0
- options:
- 1: PLUGIN_ADMIN.ENABLED
- 0: PLUGIN_ADMIN.DISABLED
- validate:
- type: bool
- twitter.enabled:
- type: toggle
- label: PLUGINS.AUTO_SEO.TWITTER.ENABLED_LABEL
- help: PLUGINS.AUTO_SEO.TWITTER.ENABLED_HELP
- highlight: 1
- default: 0
- options:
- 1: PLUGIN_ADMIN.ENABLED
- 0: PLUGIN_ADMIN.DISABLED
- validate:
- type: bool
|