Bark

push to iPhone

What is Bark?

Bark is a Chrome extension developed by leetwoxi, and its main feature is "push to iPhone".

Extension Screenshots

screenshot

Download Bark Extension CRX File

Download Bark extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        更新日志:
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/

支持自己搭建的服务器                    

Extension Basic Information

Name Bark Bark
ID pmlkbdbpglkgbgopghdcmohdcmladeii
Official URL https://chrome.google.com/webstore/detail/bark/pmlkbdbpglkgbgopghdcmohdcmladeii
Description push to iPhone
File Size 46.35 KB
Installation Count 6,000
Current Version 1.2.3
Last Updated 2020-03-21
Publish Date 2020-03-20
Rating 4.75/5 Total 28 Ratings
Developer leetwoxi
Payment Type free
Supported Languages 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"
    }
}