Pinterest Group Boards Finder
This extension will help you find pinterest group boards
Pinterest Group Boards Finder란 무엇입니까?
Pinterest Group Boards Finder은(는) SmmChum에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will help you find pinterest group boards"입니다.
확장 프로그램 스크린샷
Pinterest Group Boards Finder 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Group Boards Finder for Pinterest! This Extension: - Helps you save time ⌛ - Easy to use 👍 - Fast and reliable 🚀 - Developed with love by fellow Pinterest user 🌷 How to find Group Boards on Pinterest? 1. Install this extension 2. Navigate to the Pinterest board search page OR simply click on the extension icon to start the search. 3. Enjoy the results! Automate Pinterest group boards search process!
확장 프로그램 기본 정보
이름 | |
ID | booilmcekhdfffhckdlfphhmnedkajmo |
공식 URL | https://chrome.google.com/webstore/detail/pinterest-group-boards-fi/booilmcekhdfffhckdlfphhmnedkajmo |
설명 | This extension will help you find pinterest group boards |
파일 크기 | 13.81 KB |
설치 횟수 | 211 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2021-04-22 |
출시 날짜 | 2021-04-21 |
평점 | 2.33/5 총 3 개의 평점 |
개발자 | SmmChum |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pinterest Group Boards Finder", "author": "smmchum.com", "description": "This extension will help you find pinterest group boards", "version": "1.0.4", "permissions": [ "tabs" ], "icons": { "16": "logo-16.png", "32": "logo-32.png", "48": "logo-48.png", "128": "logo-128.png" }, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "include_globs": [ "*:\/\/*.pinterest.*\/*", "*:\/\/*.pinterest.*.*\/*", "*:\/\/pinterest.*\/*", "*:\/\/pinterest.*.*\/*" ], "js": [ "inject.js" ], "css": [ "inject.css" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true } } |