LinkBreaker
Break those pesky links!
LinkBreaker란 무엇입니까?
LinkBreaker은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Break those pesky links!"입니다.
확장 프로그램 스크린샷
LinkBreaker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Getting an itch for a good game of brick breaker, but don't want to leave your current web page? Have no fear! LinkBreaker takes the first 50 items with links on your current page and turns them into colourful bricks for your breaking pleasure. It leaves the contents of these links within the blocks so you can have the enjoyment of breaking the content of the page you're currently on. Simply start the game by clicking on the icon, and end it by pressing the `esc` key. LinkBreaker was a project made at YHack 2015, for a challenge of creating something under 4k. We used minified code and other methods of space saving for the submission, but the published version is a bit larger for numerous reasons. For more information, check out our devpost page: http://devpost.com/software/linkbreaker
확장 프로그램 기본 정보
이름 | LinkBreaker |
ID | fabffkickmpmbkgikblicljlpnghknjd |
공식 URL | https://chromewebstore.google.com/detail/linkbreaker/fabffkickmpmbkgikblicljlpnghknjd |
설명 | Break those pesky links! |
파일 크기 | 43.94 KB |
설치 횟수 | 48 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2015-11-16 |
출시 날짜 | 2015-11-16 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LinkBreaker", "version": "1.0.2", "description": "Break those pesky links!", "browser_action": { "default_icon": "images\/logo-48.png", "default_title": "LinkBreaker" }, "icons": { "48": "images\/logo-48.png", "128": "images\/logo-128.png" }, "author": "Daniel and Graham", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-2.1.4.min.js", "contentscript.js" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs" ] } |