Random Rotation

Randomly rotates everything on every webpage you visit.

什么是Random Rotation?

Random Rotation是由Joseph Feld开发的Chrome扩展程序,该扩展的主要功能是“Randomly rotates everything on every webpage you visit.”。

下载Random Rotation扩展crx文件

下载Random Rotation扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
    }
}