Birdview
Get a glance at a whole web page with an aerial view
Birdviewとは何ですか?
BirdviewはJess Telfordによって開発されたChromeの拡張機能で、その主な機能は「Get a glance at a whole web page with an aerial view」です。
拡張機能のスクリーンショット
Birdview拡張機能のCRXファイルをダウンロード
Birdview拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Click the "B" while on any page to see the Birdview.
Right click and select "options" to change how Birdview works.
**Known Issues**
- You must refresh open pages after installing Birdview (just once, all new tabs will work without refreshing)
- Elements with position:fixed may lose their fixed behavior once birdview is activated
- Resizing the browser window in birdview mode can reposition the birdview improperly
- If you fit the whole page into your viewport using the browser native zoom, birdview might misbehave
- Birdview doesn't play well with documents where the body content has overflow:hidden
- Pinch gestures do not change the zoom level continuously. The gestures toggle birdview either ON or OFF after a pinch distance threshold is met
---
Based on birdview.js by Achraf Kassioui: http://www.achrafkassioui.com/birdview 拡張機能の基本情報
| 名前 | |
| ID | mkkcfebffmojpmhnnhjiocmhiidjogge |
| 公式URL | https://chromewebstore.google.com/detail/birdview/mkkcfebffmojpmhnnhjiocmhiidjogge |
| 説明 | Get a glance at a whole web page with an aerial view |
| ファイルサイズ | 26.17 KB |
| インストール数 | 95 |
| 現在のバージョン | 1.2.0 |
| 最終更新日 | 2017-05-28 |
| 公開日 | 2017-05-27 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | Jess Telford |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/jesstelford/birdview-chrome-extension |
| ヘルプページのURL | https://github.com/jesstelford/birdview-chrome-extension/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Birdview",
"version": "1.2.0",
"manifest_version": 2,
"description": "Get a glance at a whole web page with an aerial view",
"homepage_url": "http:\/\/achrafkassioui.com\/birdview",
"icons": {
"16": "icons\/icon16.png",
"19": "icons\/icon19.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"96": "icons\/icon96.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": false
},
"options_ui": {
"page": "src\/options.html",
"chrome_style": true
},
"browser_action": {
"default_title": "browser action demo",
"default_icon": {
"16": "icons\/icon16.png",
"19": "icons\/icon19.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"96": "icons\/icon96.png",
"128": "icons\/icon96.png"
}
},
"permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"storage"
],
"web_accessible_resources": [
"src\/inject\/birdview.js",
"src\/inject\/birdview.css"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |