ClickThrough

Automate browser clicks with ClickThrough.

ClickThrough란 무엇입니까?

ClickThrough은(는) Shawn Conn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automate browser clicks with ClickThrough."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

ClickThrough 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        You ever find yourself on a page that inevitably contains some hyperlink which you need to click to end up at your destination? Perhaps you subscribe to feeds that open to pages with common download links? Do you visit many news aggregation sites which open to comment pages instead of piece of news that you wish to read? What about pages you commonly visit but can't bookmark directly, so you have to open a book mark then open your intended destination?

These are issues that ClickThrough remedies. Coupled with the powerful jQuery library, a ClickThrough allows users to specify: 
1. A site domain
2. A site path on the domain
3. A jQuery selector expression of a link to select. 

Once a ClickThrough is added, Chrome will pickup on one these pages and automatically navigate to the link in question. The user will be notified with a highlighted icon in the address bar from which they can navigate back to.

This is a small extension built up in a short manner to solve a particular niche problem. It's more approachable to the power user/web developer rather than the average user. If the extension finds enough users to be useful, new functionality & ease of use improvements are planned. 

Updates:

Version 1.1:

*Make sure options are set to default values
*Make sure current tab url is entered in pop up                    

확장 프로그램 기본 정보

이름 ClickThrough ClickThrough
ID bjfeoajfcanjhipllkbkpeagofopgoki
공식 URL https://chromewebstore.google.com/detail/clickthrough/bjfeoajfcanjhipllkbkpeagofopgoki
설명 Automate browser clicks with ClickThrough.
파일 크기 90.56 KB
설치 횟수 30
현재 버전 2.1
최근 업데이트 2016-04-20
출시 날짜 2016-04-19
개발자 Shawn Conn
결제 유형 free
확장 프로그램 웹 사이트 https://www.luciditi.io/
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ClickThrough",
    "version": "2.1",
    "description": "Automate browser clicks with ClickThrough.",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/js\/jquery-1.7.2.min.js",
                "\/js\/contentscript.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icons\/icon16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "chrome:\/\/favicon\/",
        "",
        "tabs"
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "manifest_version": 2
}