dots


dots / misc / obsidian / clipper / templates
xxwhirlpool  ·  2026-04-09

imdb-clipper.json

 1{
 2	"schemaVersion": "0.1.0",
 3	"name": "IMDB",
 4	"behavior": "create",
 5	"noteContentFormat": "{{schema:description}}",
 6	"properties": [
 7		{
 8			"name": "genre",
 9			"value": "{{schema:genre|join}}",
10			"type": "multitext"
11		},
12		{
13			"name": "director",
14			"value": "{{selector:[data-testid=\\\"title-pc-principal-credit\\\"]:first-child a|unique|join}}",
15			"type": "multitext"
16		},
17		{
18			"name": "scoreImdb",
19			"value": "{{schema:aggregateRating.ratingValue}}",
20			"type": "number"
21		},
22		{
23			"name": "cover",
24			"value": "{{schema:image}}",
25			"type": "text"
26		},
27		{
28			"name": "cast",
29			"value": "{{selector:[data-testid=\\\"title-pc-principal-credit\\\"]:nth-child(3) div a|unique|join}}",
30			"type": "multitext"
31		},
32		{
33			"name": "plot",
34			"value": "{{schema:description}}",
35			"type": "text"
36		},
37		{
38			"name": "year",
39			"value": "{{schema:datePublished|split:\\\"-\\\"|slice:0,1}}",
40			"type": "number"
41		},
42		{
43			"name": "created",
44			"value": "{{date}}",
45			"type": "date"
46		},
47		{
48			"name": "tags",
49			"value": "clippings-movies",
50			"type": "multitext"
51		}
52	],
53	"triggers": [
54		"/^https:\\/\\/www\\.imdb\\.com\\/title\\/tt\\d+(?!\\/reference\\/)(\\/[^\\s]*)?$/"
55	],
56	"noteNameFormat": "{{schema:name}} ({{schema:datePublished|split:\"-\"|slice:0,1}})",
57	"path": "clippings/movies"
58}