Web To JSON

Take value from web and take json api updated

Web To JSON란 무엇입니까?

Web To JSON은(는) bmkaraduman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take value from web and take json api updated"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Web To JSON 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Take Data from Any Web Site and change into the JSON Format.

Transform any text element on the web into a dynamic JSON API with our easy-to-use Chrome extension. 'Dynamic Text Selector to JSON' enables users to effortlessly select text elements and convert them into a structured JSON format. Whether you're a developer, data enthusiast, or simply looking to extract and structure web content, our tool streamlines the process with precision. Experience a seamless web-to-JSON journey like never before

You have 3 options: 
Static: You can select a data, if you are certain that the data you will fetch wil always be in that area.
Table: You search for a value in a table in web site and retrieve corresponding table
Query: If the value not in a table and you are not certain that value place can be change, then you can create if condition. 

And finally you can take JSON API. If you want to use up to date, your chrome extension should be open.                    

확장 프로그램 기본 정보

이름 Web To JSON Web To JSON
ID kdeflnbamgblaaeggehciepaccjiojgd
공식 URL https://chromewebstore.google.com/detail/web-to-json/kdeflnbamgblaaeggehciepaccjiojgd
설명 Take value from web and take json api updated
파일 크기 145 KB
설치 횟수 31
현재 버전 1.1
최근 업데이트 2023-09-20
출시 날짜 2023-09-10
개발자 bmkaraduman
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://twitter.com/webtojson
개인정보 보호 정책 페이지 URL https://webtojson.blogspot.com/2023/09/privacy-policy-for-web-to-json-chrome.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Web To JSON",
    "version": "1.1",
    "description": "Take value from web and take json api updated",
    "permissions": [
        "activeTab",
        "storage",
        "scripting",
        "tabs",
        "alarms",
        "identity",
        "identity.email"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_width": 500,
        "default_height": 500,
        "default_title": "Keep Updated",
        "default_icon": {
            "16": "image\/ice_aktiv.png"
        }
    },
    "icons": {
        "16": "image\/ice_16.png",
        "48": "image\/ice_48.png",
        "128": "image\/ice_128.png"
    },
    "background": {
        "type": "module",
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}