AdCake
AdCake Extension
什么是AdCake?
AdCake是由https://pages.fm开发的Chrome扩展程序,该扩展的主要功能是“AdCake Extension”。
扩展截图
下载AdCake扩展crx文件
下载AdCake扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension provide background helper support to AdCake app
Features:
+ Allow user to set post_id directly on AdCake without leaving the site. Extension will collect the post lists on Facebook and display in a dropdown to let user select quickly 扩展基本信息
| 名称 | |
| ID | feaaodbedppfbjagfoooomohhijlnepn |
| 官方URL | https://chromewebstore.google.com/detail/adcake/feaaodbedppfbjagfoooomohhijlnepn |
| 简介 | AdCake Extension |
| 文件大小 | 41.4 KB |
| 安装次数 | 3,221 |
| 当前版本 | 1.0.6 |
| 更新时间 | 2020-12-09 |
| 上架时间 | 2019-01-19 |
| 开发者 | https://pages.fm |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://pages.fm |
| 帮助页面URL | https://www.facebook.com/groups/pancake.tools/ |
| 隐私政策页面URL | https://pages.fm/privacy |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "AdCake",
"description": "AdCake Extension",
"version": "1.0.6",
"icons": {
"16": "cc_favicon.png",
"128": "cc_favicon.png"
},
"page_action": {
"default_icon": "cc_favicon.png"
},
"background": {
"scripts": [
".\/dist\/background-bundle.js"
],
"persistent": true
},
"permissions": [
"tabs",
"webRequest",
"webRequestBlocking",
"*:\/\/www.facebook.com\/*",
"*:\/\/m.facebook.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/adcake.io\/*",
"https:\/\/staging.ad.pages.fm\/*",
"https:\/\/localhost:6600\/*"
],
"js": [
".\/dist\/content-bundle.js"
]
}
]
} | |