Move Reddit Buttons

Moves the share/save/hide/report buttons to the left.

Vad är Move Reddit Buttons?

Move Reddit Buttons är en Chrome-tillägg utvecklad av Ictinus, och dess huvudfunktion är "Moves the share/save/hide/report buttons to the left.".

Tilläggsskärmbilder

screenshot

Ladda ner Move Reddit Buttons-förlängningens CRX-fil

Ladda ner Move Reddit Buttons-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Intended for Reddit, this extension moves the share/save/hide/report/comment buttons to the left of the tagline (points/age/submitter) so that the buttons do not change position horizontally from one entry to the next.

Especially convenient for those who like to hide entries in rapid succession.

You may also wish to check out the evolved version of this extension which is a  userscript. See the support link.                    

Grundläggande Information om Tillägg

Namn Move Reddit Buttons Move Reddit Buttons
ID mbdhoojhjoeboanilfflnmffphkndicn
Officiell webbadress https://chromewebstore.google.com/detail/move-reddit-buttons/mbdhoojhjoeboanilfflnmffphkndicn
Beskrivning Moves the share/save/hide/report buttons to the left.
Filstorlek 53.45 KB
Antal Installationer 14
Aktuell Version 1.23.1
Senast Uppdaterad 2014-07-26
Publiceringsdatum 2014-07-26
Betyg 4.71/5 Totalt 7 Betyg
Utvecklare Ictinus
Betalningssätt free
Hjälpsida URL http://userscripts.org/scripts/show/66496
Stödda Språk ar
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Move Reddit Buttons",
    "description": "Moves the share\/save\/hide\/report buttons to the left.",
    "version": "1.23.1",
    "background": {
        "scripts": []
    },
    "permissions": [
        "http:\/\/*.reddit.com\/",
        "https:\/\/*.reddit.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.reddit.com\/*",
                "https:\/\/*.reddit.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "moveRedditButtons.user.js"
            ]
        }
    ]
}