Conversaciones » Peticiones de scripts

[SOLVED] Filmix (filmix.me) auto-expand full description

§
Publicado: 11/02/2017
Editado: 11/02/2017

[SOLVED] Filmix (filmix.me) auto-expand full description

Script Request:
Filmix (filmix.me) auto show full film description (simple click)

link example: https://filmix.me/komedii/111462-v-chetyreh-stenah-2016.html
button "more/больше \/" "меньше/low /\" auto-expand film description (auto show full description or auto click on "more button"

woxxomMod
§
Publicado: 11/02/2017

Are you using Stylish extension? This can be implemented with a userstyle:

@-moz-document regexp("https://filmix\\.me/.+?/\\d+.+") {
div.about[itemprop="description"] {
    max-height: none!important;
    height: auto!important;
}
#show-more {
    display: none!important;
}
}

Click the toolbar icon, click Create new style, in the editor window click Import button, paste the code, type a name for the style, save it.

§
Publicado: 11/02/2017

Yes using Stylish, check updated versions stylish and chrome, not working

woxxomMod
§
Publicado: 11/02/2017

Did you click the import button before pasting the code?

§
Publicado: 11/02/2017

Yeah, now working! Thank you !!

@-moz-document regexp("https://filmix\\.me/.+?/\\d+.+") mean in basic
URL regexp to: https://filmix\.me/.+?/\d+.+

and code is:

div.about[itemprop="description"] {
max-height: none!important;
height: auto!important;
}
#show-more {
display: none!important;
}

Publicar respuesta

Inicia sesión para responder.

长期地址
遇到问题?请前往 GitHub 提 Issues。