Liker Land
Browser extension for liker.land
Liker Land란 무엇입니까?
Liker Land은(는) https://liker.land에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser extension for liker.land"입니다.
확장 프로그램 스크린샷
Liker Land 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Browser extension for bookmarking any web page to your Liker Land reading list Liker Land is a new generation of content reader in which - Users are in full control of their feed - Every Like is an actual reward to creators - Auto inject Liker button for youtube videos. Copy and paste you Liker button URL into the video description field for this to work! New Feature: - Fixed infinite error loop causing browser crash - Removed temp Liker ID - Fixed LikeCoin button injection not working in youtube
확장 프로그램 기본 정보
이름 | |
ID | cjjcemdmkddjbofomfgjedpiifpgkjhe |
공식 URL | https://chromewebstore.google.com/detail/liker-land/cjjcemdmkddjbofomfgjedpiifpgkjhe |
설명 | Browser extension for liker.land |
파일 크기 | 159 KB |
설치 횟수 | 376 |
현재 버전 | 0.0.10 |
최근 업데이트 | 2022-06-12 |
출시 날짜 | 2020-03-10 |
평점 | 4.00/5 총 5 개의 평점 |
개발자 | https://liker.land |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://liker.land |
도움말 페이지 URL | https://docs.like.co |
개인정보 보호 정책 페이지 URL | https://like.co/in/policies/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Liker Land", "version": "0.0.10", "icons": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "description": "Browser extension for liker.land", "homepage_url": "https:\/\/liker.land", "short_name": "Liker Land", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "author": "Republic of Liker Land", "minimum_chrome_version": "49", "browser_action": { "default_icon": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "default_title": "Login to liker.land", "chrome_style": false }, "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": true, "chrome_style": false }, "background": { "scripts": [ "js\/background.bundle.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/contentScript.bundle.js" ] } ], "web_accessible_resources": [ "js\/inpage.bundle.js", "assets\/likecoin-button\/like-clap.svg" ] } |