Random Rotation

Randomly rotates everything on every webpage you visit.

ما هو Random Rotation؟

Random Rotation هو إضافة Chrome تم تطويرها بواسطة Joseph Feld، والميزة الرئيسية لها هي "Randomly rotates everything on every webpage you visit.".

تحميل ملف CRX للإضافة Random Rotation

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

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

                        This extension does more than just rotate everything on the page into an unreadable mess, it solves all your problems in life. By making everything comically unreadable, it will clear your mind and help you find inner peace.

You can also turn it off if you want.                    

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

الاسم Random Rotation Random Rotation
ID dnpffiachmphafhmajpcfalbmihgdkob
عنوان URL الرسمي https://chromewebstore.google.com/detail/random-rotation/dnpffiachmphafhmajpcfalbmihgdkob
الوصف Randomly rotates everything on every webpage you visit.
حجم الملف 8.36 KB
عدد التثبيتات 52
النسخة الحالية 1.1
آخر تحديث 2018-09-03
تاريخ النشر 2018-09-03
تقييم 4.50/5 مجموع تقييمات 2
المطور Joseph Feld
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Random Rotation",
    "short_name": "Randomly Rotate",
    "description": "Randomly rotates everything on every webpage you visit.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}