钉钉助手

网页版钉钉增强插件

Wat is 钉钉助手?

钉钉助手 is een Chrome-extensie ontwikkeld door EvinK, en de belangrijkste functie is "网页版钉钉增强插件".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie 钉钉助手

Download 钉钉助手-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

                        钉钉助手是一款开源、免费的Chrome插件
----------------------------------------------------------------------------
v1.2.4 版本更新 
适配MV3

v1.2.2 版本更新 

* 提升通知稳定性

有部分朋友反馈此版本无法正常接收通知,猜测可能是插件间相互冲突导致,如果这种情况一直持续,推荐使用更成熟的钉钉Electron应用 


v1.2.0 版本更新

 * 现在点击通知会跳到会话窗口
 * 添加了夜间模式主题

v1.1.0 版本更新

【功能新增】
   *新消息提醒:即使不在当前工作区,也能收到钉钉新消息。除此之外,还可以通过“通知设置”按钮,对单独的联系人设置免打扰
    *新增设置页:在这里自定义你的选项

v1.0.0 版本更新

【功能移除】
   自动登录:由于钉钉下线了账密登录,所以本功能被移除

【功能新增】
   * 登录保持:利用Chrome的特性,我们能让你的登录状态一直保持。不管是不小心关闭了网页标签,或是关闭了整个浏览器,下次访问钉钉时,你仍然处于登录状态
   * 截图:使用Ctrl + Alt + A, 或者使用Popup上的截图按钮,就能快速选择截图
   * 全新的通知风格

Please feel free to contact with me: [email protected]
Git Repository: https://github.com/EVINK/Dingtalk-Assistant                    

Basisinformatie over de Extensie

Naam 钉钉助手 钉钉助手
ID gcgndgebkbfgnofkdgipnhlijgpocgmh
Officiële URL https://chromewebstore.google.com/detail/%E9%92%89%E9%92%89%E5%8A%A9%E6%89%8B/gcgndgebkbfgnofkdgipnhlijgpocgmh
Beschrijving 网页版钉钉增强插件
Bestandsgrootte 72.79 KB
Aantal Installaties 1,094
Huidige Versie 1.2.4
Laatst Bijgewerkt 2022-06-17
Publicatiedatum 2020-02-28
Beoordeling 4.58/5 Totaal 12 Beoordelingen
Ontwikkelaar EvinK
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "\u9489\u9489\u52a9\u624b",
    "description": "\u7f51\u9875\u7248\u9489\u9489\u589e\u5f3a\u63d2\u4ef6",
    "version": "1.2.4",
    "short_name": "dingding",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "sandbox": {
        "pages": [
            "sandbox.html",
            "setting.html",
            "https:\/\/jinshuju.net\/f\/rP1a9p"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/im.dingtalk.com\/*",
                "https:\/\/im.dingtalk.com\/*"
            ],
            "js": [
                "scripts\/utils.js",
                "scripts\/snapshot.js",
                "scripts\/generalPageContent.js",
                "scripts\/dingTalkContent.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                ""
            ],
            "css": [
                "styles\/content.css"
            ],
            "js": [
                "scripts\/utils.js",
                "scripts\/snapshot.js",
                "scripts\/generalPageContent.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/imgs\/*"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "scripts\/inject.js"
            ],
            "matches": [
                "http:\/\/im.dingtalk.com\/*",
                "https:\/\/im.dingtalk.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "background",
        "notifications"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}