Move Reddit Buttons

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

ما هو Move Reddit Buttons؟

Move Reddit Buttons هو إضافة Chrome تم تطويرها بواسطة Ictinus، والميزة الرئيسية لها هي "Moves the share/save/hide/report buttons to the left.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Move Reddit Buttons

قم بتنزيل ملفات الامتداد Move Reddit Buttons بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Move Reddit Buttons Move Reddit Buttons
ID mbdhoojhjoeboanilfflnmffphkndicn
عنوان URL الرسمي https://chromewebstore.google.com/detail/move-reddit-buttons/mbdhoojhjoeboanilfflnmffphkndicn
الوصف Moves the share/save/hide/report buttons to the left.
حجم الملف 53.45 KB
عدد التثبيتات 14
النسخة الحالية 1.23.1
آخر تحديث 2014-07-26
تاريخ النشر 2014-07-26
تقييم 4.71/5 مجموع تقييمات 7
المطور Ictinus
نوع الدفع free
عنوان صفحة المساعدة http://userscripts.org/scripts/show/66496
اللغات المدعومة 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"
            ]
        }
    ]
}