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"입니다.
확장 프로그램 스크린샷
Kinetic Web Page 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
확장 프로그램 기본 정보
이름 | |
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" ] } ] } |