Bark
push to iPhone
Wat is Bark?
Bark is een Chrome-extensie ontwikkeld door leetwoxi, en de belangrijkste functie is "push to iPhone".
Extensie Screenshots
Download het CRX-bestand van de extensie Bark
Download Bark-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
更新日志:
20200321:
修复了一个bug:https://github.com/xlvecle/Bark-Chrome-Extension/issues/10
20190613:
修复了一个bug:
浏览器选中文本后,右键没有Bark选项 issue: https://github.com/xlvecle/Bark-Chrome-Extension/issues/8
Bark是什么?
https://github.com/Finb/Bark/
Bark is an iOS App which allows you to push customed notifications to your iPhone.
作者原贴:
https://www.v2ex.com/t/467407
App 源码
https://github.com/Finb/Bark
后端源码
https://github.com/Finb/go-tools/blob/master/Bark.go
这是一款chrome插件能帮你方便地把网页上的文本或者网址推送到Bark手机端。
安装说明:
请直接前往Chrome应用商店安装: https://chrome.google.com/webstore/detail/bark/pmlkbdbpglkgbgopghdcmohdcmladeii
下载release目录中的src.crx,https://github.com/xlvecle/Bark-Chrome-Extension/raw/master/release/src.crx
打开chrome插件管理页面,拖进去安装即可
使用说明:
直接点击Bark图标可以push当前网页的网址
选中文本后(需要等待DOM Ready)点击Bark图标可以push选中文本
选中文本后可以通过右键菜单push文本到iPhone
右键Bark图标可以进入配置页配置服务器
友情提示:
请提前在Bark手机端注册自己的设备,在配置页配置专属自己的push url,形如 http://xxx.xxx/YourKey/
支持自己搭建的服务器 Basisinformatie over de Extensie
| Naam | |
| ID | pmlkbdbpglkgbgopghdcmohdcmladeii |
| Officiële URL | https://chrome.google.com/webstore/detail/bark/pmlkbdbpglkgbgopghdcmohdcmladeii |
| Beschrijving | push to iPhone |
| Bestandsgrootte | 46.35 KB |
| Aantal Installaties | 6,000 |
| Huidige Versie | 1.2.3 |
| Laatst Bijgewerkt | 2020-03-21 |
| Publicatiedatum | 2020-03-20 |
| Beoordeling | 4.75/5 Totaal 28 Beoordelingen |
| Ontwikkelaar | leetwoxi |
| Betalingswijze | free |
| Ondersteunde Talen | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Bark",
"version": "1.2.3",
"manifest_version": 2,
"description": "push to iPhone",
"permissions": [
"*:\/\/*\/*",
"activeTab",
"tabs",
"storage",
"notifications",
"contextMenus",
"clipboardRead"
],
"background": {
"page": "background.html",
"persistent": true
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"contentScript.js"
]
}
],
"web_accessible_resources": [
"bark_48.png"
],
"icons": {
"16": "bark_16.png",
"48": "bark_48.png",
"128": "bark_128.png"
},
"options_page": "options.html",
"browser_action": {
"default_icon": {
"16": "bark_16.png",
"48": "bark_48.png",
"128": "bark_128.png"
},
"default_title": "Bark"
}
} | |