Legit Profile Extension
Makes your social profile looks legit!
什麼是Legit Profile Extension?
Legit Profile Extension是由rizafahmi開發的Chrome擴展程式,該擴展的主要功能是“Makes your social profile looks legit!”。
擴展截圖
下載Legit Profile Extension擴展crx文件
下載Legit Profile Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
🍰 makes your social profile such as github looks legit! Add PRO label for you who hasn't, and more to come.
The code is available at https://github.com/rizafahmi/legit-chrome-extension for you who wants to learn how to create chrome extension. Contribution welcome! 擴展基本資訊
| 名稱 | |
| ID | lkdnblfhfglpaiibilipagobbeaofphg |
| 官方網址 | https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg |
| 簡介 | Makes your social profile looks legit! |
| 檔案大小 | 7.82 KB |
| 安裝次數 | 16 |
| 目前版本 | 0.2.0 |
| 更新時間 | 2019-01-11 |
| 上架時間 | 2019-01-10 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | rizafahmi |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://rizafahmi.com/ |
| 說明頁面URL | https://github.com/rizafahmi/legit-chrome-extension |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Legit Profile Extension",
"description": "Makes your social profile looks legit!",
"author": "Riza Fahmi",
"version": "0.2.0",
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"activeTab"
],
"browser_action": {
"default_icon": "legit-icon.png",
"default_title": "Shot and share!"
},
"background": {
"persistent": false,
"scripts": [
"background.js"
]
}
} | |