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
官方網址 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
    }
}