Page Rotate
Rotate any web page with the click of a button.
Что такое Page Rotate?
Page Rotate - это расширение Chrome, разработанное Jesse Skinner, и его основная функция - "Rotate any web page with the click of a button.".
Скачать файл CRX расширения Page Rotate
Скачайте файлы расширений 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"
}
} | |