Kinetic Web Page

Kinetic Web Page. Browse like an expert

什麼是Kinetic Web Page?

Kinetic Web Page是由http://massinflux.com開發的Chrome擴展程式,該擴展的主要功能是“Kinetic Web Page. Browse like an expert”。

擴展截圖

screenshot

下載Kinetic Web Page擴展crx文件

下載Kinetic Web Page擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Kinetic Web Page. Browse like an expert

How to:
-- Triple click to enter "Kinetic" mode then simply click and drag to move around
-- Once in "Kinetic" mode, use the scroll function from your mouse to zoom in or out 
-- Triple click again to exit "Kinetic" mode

v. 0.0.8
-- removing selected text

v. 0.0.7
-- bug updates

v. 0.0.4
-- changed from double click to triple click

v. 0.0.3
-- zoom bug fix

v. 0.0.2
-- Initial release
-- Double click to enter "Kinetic" mode
-- Page Zoom using the mouse scroll function

Disclaimer:
-- I made this extension for my own needs, there might be bugs
-- If you find this extension useful, please say thanks

For developers
-- https://github.com/patrioticcow/kinetic                    

擴展基本資訊

名稱 Kinetic Web Page Kinetic Web Page
ID bippgmnfbeigidfdhhjolbflkchdafjp
官方網址 https://chrome.google.com/webstore/detail/kinetic-web-page/bippgmnfbeigidfdhhjolbflkchdafjp
簡介 Kinetic Web Page. Browse like an expert
檔案大小 103 KB
安裝次數 17
目前版本 0.0.8
更新時間 2015-01-24
上架時間 2015-01-24
評分 4.20/5 共 5 次評分
開發者 http://massinflux.com
電子郵箱 [email protected]
付費類型 free
擴展官網 http://massinfluix.com
說明頁面URL http://massinfluix.com
隱私政策頁面URL http://massinflux.com
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kinetic Web Page",
    "version": "0.0.8",
    "manifest_version": 2,
    "description": "Kinetic Web Page. Browse like an expert",
    "homepage_url": "http:\/\/massinfluix.com",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "options_page": "src\/options_custom\/index.html",
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Kinetic",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "contentSettings",
        "contextMenus",
        "notifications",
        "storage",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "js\/jquery.kinetic.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}