Dcard 簽名檔管理員
Automatic add signature to textarea in dcard page
Что такое Dcard 簽名檔管理員?
Dcard 簽名檔管理員 - это расширение Chrome, разработанное Dylandy Chang, и его основная функция - "Automatic add signature to textarea in dcard page".
Снимки экрана расширения
Скачать файл CRX расширения Dcard 簽名檔管理員
Скачайте файлы расширений Dcard 簽名檔管理員 в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
非官方狄卡簽名檔管理員,本程式能夠自動將簽名檔置入輸入框中。 本程式開放予大家自行修改與更新,若是有興趣參與本專案的朋友,請至 github [註一] 進行參與,若是直接參與本專案,請使用 github pull request [註二]的方式進行協作,以方便管理,若是程式上有問題,希望能夠得到開發人員快速地處理,請至 issue 頁面[註三],填寫 issue ,我們會盡快為您處理,若是對程式有任何想法,也歡迎在 issue 頁面告訴我們。 如何參與本專案? 1. 我可以幫忙撰寫文案,我覺得這個程式的文案可以更好 2. 我可以幫忙美術設計,我覺得這個程式的 icon 及介面不合我意,我想要把它做得更好 3. 我可以幫忙程式設計,我覺得程式還有很多可以改進的地方,或許我能夠協助幫忙 MIT Licence 本程式透過 MIT 授權釋出,若是想要修改發行,請遵守以下條款。 The MIT License (MIT) Copyright (c) 2015 Dylandy Chang Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 註一:https://www.github.com/dylandy/dcard_signature_manager 註二:https://help.github.com/articles/using-pull-requests/ 註三:https://github.com/dylandy/dcard_signature_manager/issues
Основная информация о расширении
Название | |
ID | lafihplflpgoonpodinemdlfmpbnjmoe |
Официальный URL | https://chrome.google.com/webstore/detail/dcard-%E7%B0%BD%E5%90%8D%E6%AA%94%E7%AE%A1%E7%90%86%E5%93%A1/lafihplflpgoonpodinemdlfmpbnjmoe |
Описание | Automatic add signature to textarea in dcard page |
Размер файла | 51.83 KB |
Количество установок | 23 |
Текущая Версия | 1.0.4 |
Последнее Обновление | 2015-01-24 |
Дата публикации | 2015-01-24 |
Рейтинг | 4.67/5 Всего 3 оценок |
Разработчик | Dylandy Chang |
Тип оплаты | free |
Поддерживаемые языки | zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Dcard \u7c3d\u540d\u6a94\u7ba1\u7406\u54e1", "description": "Automatic add signature to textarea in dcard page", "version": "1.0.4", "browser_action": { "default_icon": "16-16.png", "default_popup": "option.html" }, "permissions": [ "storage", "history" ], "content_scripts": [ { "matches": [ "http:\/\/www.dcard.tw\/*", "https:\/\/www.dcard.tw\/*" ], "js": [ "jquery.js", "content.js" ], "run_at": "document_end" } ], "icons": { "16": "16-16.png", "48": "48-48.png", "98": "98-98.png" } } |