User Tagger

Tag users on Facebook, YouTube and Hacker News

User Taggerとは何ですか?

User Taggerはhttps://jouanmarcel.comによって開発されたChromeの拡張機能で、その主な機能は「Tag users on Facebook, YouTube and Hacker News」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

User Tagger拡張機能のCRXファイルをダウンロード

User Tagger拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Functions:
* Easy to use
* Privat, only you can see your tags
* Activate it only for the sites you need it for
* Overview of all your tags

Supported Websites:
* YouTube (All channels and users appearing in comments)
* Facebook (Users and Groups, everywhere)
* Hacker News (Users on all major pages)

Use cases:
* Highlight users who contribute interesting content, so you immediately see their content
* Mark trolls and stop wasting your time reading their content
* Stop forgetting important details of your contacts and have notes right next to their name
* Label official accounts so you know for sure that they are the real deal
* Give pseudonyms the name you know them by


------------------------

Disclaimer:
By installing this extension you agree that I have no liability for any damages this might cause, nor can I be held responsible for any expectations or promises that are claimed here. The code worked just fine when I developed it and tested it on my computers. Maybe it does work for you, maybe not. Maybe it will work today, but not tomorrow. I'm an individual developer just trying to create some stuff, please leave me alone with any legal charges. In case you find bugs, please report them and stay nice in the comments. Otherwise I will tag you as the unfriendly guy who demotivates developers.

Privacy Policy:
By installing this item, you agree to the Google Terms of Service and Privacy Policy at https://www.google.com/intl/en/policies/. No joke.                    

拡張機能の基本情報

名前 User Tagger User Tagger
ID ghopaighoppjknnjhkhofnkbolakobpg
公式URL https://chromewebstore.google.com/detail/user-tagger/ghopaighoppjknnjhkhofnkbolakobpg
説明 Tag users on Facebook, YouTube and Hacker News
ファイルサイズ 58.89 KB
インストール数 27
現在のバージョン 0.0.2
最終更新日 2017-12-04
公開日 2017-12-04
評価 5.00/5 合計 1 レビュー
開発者 https://jouanmarcel.com
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "User Tagger",
    "description": "Tag users on Facebook, YouTube and Hacker News",
    "version": "0.0.2",
    "author": "Jouan Marcel",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/www.facebook.com\/*"
            ],
            "js": [
                "vendor\/jquery-3.2.1.min.js",
                "extension\/functions.js",
                "extension\/init.js",
                "extension\/usercard.js",
                "sites\/hn.js",
                "sites\/yt.js",
                "sites\/fb.js",
                "sites\/router.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "options_page": "options\/options.html",
    "browser_action": [],
    "background": {
        "scripts": [
            "vendor\/jquery-3.2.1.min.js",
            "extension\/init.js",
            "background.js"
        ]
    },
    "icons": {
        "128": "images\/logo-128.png",
        "512": "images\/logo-512.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage",
        "http:\/\/fonts.googleapis.com\/",
        "https:\/\/fonts.googleapis.com\/"
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "images\/*.svg"
    ]
}