Random Rotation

Randomly rotates everything on every webpage you visit.

Random Rotation là gì?

Random Rotation là một tiện ích mở rộng Chrome được phát triển bởi Joseph Feld, và tính năng chính của nó là "Randomly rotates everything on every webpage you visit.".

Tải xuống tệp CRX của tiện ích mở rộng Random Rotation

Tải xuống các tệp mở rộng Random Rotation dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Random Rotation Random Rotation
ID dnpffiachmphafhmajpcfalbmihgdkob
URL Chính Thức https://chromewebstore.google.com/detail/random-rotation/dnpffiachmphafhmajpcfalbmihgdkob
Mô tả Randomly rotates everything on every webpage you visit.
Kích Thước Tệp 8.36 KB
Số Lần Cài Đặt 52
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-09-03
Ngày Phát Hành 2018-09-03
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Joseph Feld
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}