TF2 Item Context Search
Provides context menus to search for item stats on various sites.
Was ist TF2 Item Context Search?
TF2 Item Context Search ist eine Chrome-Erweiterung, die von Julia entwickelt wurde, und ihr Hauptmerkmal ist "Provides context menus to search for item stats on various sites.".
Erweiterungsscreenshots
TF2 Item Context Search-Erweiterungs-CRX-Datei herunterladen
Laden Sie TF2 Item Context Search-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
TF2 Item Context Search is a browser extension for displaying right-click context menus to search for items on various sites when selecting an item's name anywhere on the page. Options for adding custom context links are included.
Features:
- Provides right-click context menus for the following resources:
- Search classifieds on backpack.tf classifieds.
- If the item is Unusual, view Unusual prices for item on backpack.tf.
- If the item is Unusual, view Unusual prices for effect on backpack.tf.
- View stats for item on backpack.tf classifieds.
- View listings on the Steam Community Market.
- View item on marketplace.tf.
- Clicking on the extension's icon reveals a search bar for searching for items by user input. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | aojkfndbibilkfffeiiajakhecfakkcb |
| Offizielle URL | https://chromewebstore.google.com/detail/tf2-item-context-search/aojkfndbibilkfffeiiajakhecfakkcb |
| Beschreibung | Provides context menus to search for item stats on various sites. |
| Dateigröße | 91.58 KB |
| Installationsanzahl | 365 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2021-08-16 |
| Veröffentlichungsdatum | 2021-05-16 |
| Bewertung | 4.40/5 Insgesamt 5 Bewertungen |
| Entwickler | Julia |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/juliarose/tf2-item-context-search |
| Hilfeseite URL | https://github.com/juliarose/tf2-item-context-search/issues |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "TF2 Item Context Search",
"description": "Provides context menus to search for item stats on various sites.",
"version": "1.0.1",
"version_name": "1.0.1",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"browser_action": {
"default_icon": "images\/icon.png",
"default_popup": "views\/popup.html"
},
"background": {
"persistent": true,
"page": "views\/background.html"
},
"web_accessible_resources": [
"js\/content\/injects\/*.js",
"js\/app\/config.js",
"js\/app\/storage.js",
"js\/app\/browser.js"
],
"permissions": [
"activeTab",
"contextMenus",
"background",
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.tf\/*",
"*:\/\/*.store\/*",
"*:\/\/*.trade\/*",
"*:\/\/*.cash\/*",
"*:\/\/*.deals\/*",
"*:\/\/*.gg\/*",
"*:\/\/steamcommunity.com\/*",
"*:\/\/stntrading.eu\/*"
],
"js": [
"js\/content\/all_urls.js"
],
"css": [
"css\/content\/all_urls.css"
],
"run_at": "document_end"
}
],
"optional_permissions": [
" | |