Birdview

Get a glance at a whole web page with an aerial view

Birdviewคืออะไร?

Birdview เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jess Telford และคุณลักษณะหลักของมันคือ "Get a glance at a whole web page with an aerial view"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Birdview

ดาวน์โหลดไฟล์ส่วนขยาย 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Birdview 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"
            ]
        }
    ]
}