Kinetic Web Page

Kinetic Web Page. Browse like an expert

Kinetic Web Page क्या है?

Kinetic Web Page http://massinflux.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Kinetic Web Page. Browse like an expert"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Kinetic Web Page एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
            ]
        }
    ]
}