We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is the temporary fix I quickly whipped together
// ==UserScript== // @name Google Shopping Script // @namespace http://tampermonkey.net/ // @version 0.3 // @description Script for Google Shopping pages and search results // @match *://www.google.com/search?*q=*&udm=28* // @grant none // ==/UserScript== function GM_addStyle (css) { const style = document.createElement('style') style.type = 'text/css' style.textContent = css document.head.appendChild(style) return style } GM_addStyle(` .GyAeWb {justify-content:flex-end} `)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is the temporary fix I quickly whipped together
The text was updated successfully, but these errors were encountered: