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