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!
拡張機能の基本情報
名前 | Legit Profile Extension |
ID | lkdnblfhfglpaiibilipagobbeaofphg |
公式URL | 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 |
Eメール | rizafahmi@gmail.com |
支払い方法 | 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" ] } } |