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文件
下载Pinterest Group Boards Finder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 } } |