Page Rotate
Rotate any web page with the click of a button.
什么是Page Rotate?
Page Rotate是由Jesse Skinner开发的Chrome扩展程序,该扩展的主要功能是“Rotate any web page with the click of a button.”。
下载Page Rotate扩展crx文件
下载Page Rotate扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | igefdeghmmfballonnobhendpkeinikc |
| 官方URL | https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc |
| 简介 | Rotate any web page with the click of a button. |
| 文件大小 | 17.03 KB |
| 安装次数 | 2,000 |
| 当前版本 | 0.1 |
| 更新时间 | 2013-11-21 |
| 上架时间 | 2013-11-21 |
| 评分 | 2.85/5 共27次评分 |
| 开发者 | Jesse Skinner |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Page Rotate",
"version": "0.1",
"description": "Rotate any web page with the click of a button.",
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"pagerotate.js",
"contentscript.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"page_action": {
"default_icon": {
"19": "icons\/19.png",
"38": "icons\/38.png"
},
"default_title": "Page Rotate"
}
} | |